diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-01-30 21:36:56 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-30 23:37:39 -0500 |
commit | 3a7719d303c14a74040944485e3e366db3f9fcc5 (patch) | |
tree | e8dde0c523d73f724ab6c515492e4e5c2900de4a /src/test | |
parent | 883127fd84a05927f33fd25c868c52cce2123362 (diff) |
test-strv.c: Split tests into seperate functions
test-strv.c: Leaves main clean for additional tests
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-strv.c | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index 5ee4447669..44b067cec4 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -24,19 +24,25 @@ #include "util.h" #include "specifier.h" -int main(int argc, char *argv[]) { +static void test_specifier_printf(void) { + char *w; + const Specifier table[] = { { 'a', specifier_string, (char*) "AAAA" }, { 'b', specifier_string, (char*) "BBBB" }, { 0, NULL, NULL } }; + w = specifier_printf("xxx a=%a b=%b yyy", table, NULL); + printf("<%s>\n", w); + free(w); +} + +static void test_foreach_word_quoted(void) { char *w, *state; size_t l; const char test[] = "test a b c 'd' e '' '' hhh '' ''"; - printf("<%s>\n", test); - FOREACH_WORD_QUOTED(w, l, test, state) { char *t; @@ -44,7 +50,9 @@ int main(int argc, char *argv[]) { printf("<%s>\n", t); free(t); } +} +static void test_default_term_for_tty(void) { printf("%s\n", default_term_for_tty("/dev/tty23")); printf("%s\n", default_term_for_tty("/dev/ttyS23")); printf("%s\n", default_term_for_tty("/dev/tty0")); @@ -57,10 +65,12 @@ int main(int argc, char *argv[]) { printf("%s\n", default_term_for_tty("pty0")); printf("%s\n", default_term_for_tty("pts/0")); printf("%s\n", default_term_for_tty("console")); +} - w = specifier_printf("xxx a=%a b=%b yyy", table, NULL); - printf("<%s>\n", w); - free(w); +int main(int argc, char *argv[]) { + test_default_term_for_tty(); + test_foreach_word_quoted(); + test_specifier_printf(); return 0; } |