X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=test%2Flib%2Ftest-process-sync-stdout.c;fp=test%2Flib%2Ftest-process-sync-stdout.c;h=96ccb756e2d1ecf26b2de73a59beb1f6af3fcb88;hb=d20e98b93afaf25faca4db2a3583c191bdabe439;hp=0000000000000000000000000000000000000000;hpb=c7e26c27c7e029e6670dfebc8f27d9295e9fdeb7;p=petitboot diff --git a/test/lib/test-process-sync-stdout.c b/test/lib/test-process-sync-stdout.c new file mode 100644 index 0000000..96ccb75 --- /dev/null +++ b/test/lib/test-process-sync-stdout.c @@ -0,0 +1,53 @@ + +#include +#include +#include + +#include +#include +#include + +static int do_child(void) +{ + printf("forty two\n"); + return 42; +} + +int main(int argc, char **argv) +{ + struct waitset *waitset; + struct process *process; + const char *child_argv[3]; + void *ctx; + + if (argc == 2 && !strcmp(argv[1], "child")) + return do_child(); + + ctx = talloc_new(NULL); + + waitset = waitset_create(ctx); + + process_init(ctx, waitset); + + child_argv[0] = argv[0]; + child_argv[1] = "child"; + child_argv[2] = NULL; + + process = process_create(ctx); + process->path = child_argv[0]; + process->argv = child_argv; + process->keep_stdout = true; + + process_run_sync(process); + + assert(WIFEXITED(process->exit_status)); + assert(WEXITSTATUS(process->exit_status) == 42); + + assert(process->stdout_len == strlen("forty two\n")); + assert(!memcmp(process->stdout_buf, "forty two\n", + process->stdout_len)); + + talloc_free(ctx); + + return EXIT_SUCCESS; +}