diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-13 11:46:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-13 11:46:04 -0400 |
commit | 3ddfd5ff25b1319dee3a013c8dac02ff9121971e (patch) | |
tree | 47e67ba23de5638e2c186eefca3acdbe6cfd09e7 /src/ext | |
parent | f8d5fb42a392a764da9f46102583ea2dff960939 (diff) | |
parent | 8253428253109dabc35861cbaab23a44a22eb24d (diff) | |
download | tor-3ddfd5ff25b1319dee3a013c8dac02ff9121971e.tar.gz tor-3ddfd5ff25b1319dee3a013c8dac02ff9121971e.zip |
Merge branch 'maint-0.3.3' into maint-0.3.4
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/tinytest.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/ext/tinytest.c b/src/ext/tinytest.c index 3fb1b39c71..a51cd6011a 100644 --- a/src/ext/tinytest.c +++ b/src/ext/tinytest.c @@ -207,12 +207,20 @@ testcase_run_forked_(const struct testgroup_t *group, r = (int)read(outcome_pipe[0], b, 1); if (r == 0) { printf("[Lost connection!] "); - return 0; + return FAIL; } else if (r != 1) { perror("read outcome from pipe"); } - waitpid(pid, &status, 0); + r = waitpid(pid, &status, 0); close(outcome_pipe[0]); + if (r == -1) { + perror("waitpid"); + return FAIL; + } + if (! WIFEXITED(status) || WEXITSTATUS(status) != 0) { + printf("[did not exit cleanly.]"); + return FAIL; + } return b[0]=='Y' ? OK : (b[0]=='S' ? SKIP : FAIL); } #endif |