| 12345678910111213141516171819202122232425262728293031323334353637 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <reproc/drain.h>
- #include <reproc/reproc.h>
- #include "assert.h"
- int main(void)
- {
- const char *argv[] = { RESOURCE_DIRECTORY "/pid", NULL };
- char *output = NULL;
- reproc_sink sink = reproc_sink_string(&output);
- int r = -1;
- reproc_t *process = reproc_new();
- ASSERT(process);
- ASSERT(reproc_pid(process) == REPROC_EINVAL);
- r = reproc_start(process, argv, (reproc_options){ 0 });
- ASSERT_OK(r);
- r = reproc_drain(process, sink, sink);
- ASSERT_OK(r);
- ASSERT(output != NULL);
- ASSERT(reproc_pid(process) == strtol(output, NULL, 10));
- r = reproc_wait(process, REPROC_INFINITE);
- ASSERT_OK(r);
- ASSERT(reproc_pid(process) == strtol(output, NULL, 10));
- reproc_destroy(process);
- reproc_free(output);
- }
|