aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r--src/test/test_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 071fd04e87..6f875606ec 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -1408,7 +1408,7 @@ run_util_spawn_background(const char *argv[], const char *expected_out,
tt_int_op(pos, ==, strlen(expected_out));
/* Check it terminated correctly */
- retval = tor_get_exit_code(process_handle);
+ retval = tor_get_exit_code(process_handle, 1);
tt_int_op(retval, ==, expected_exit);
// TODO: Make test-child exit with something other than 0
@@ -1529,7 +1529,7 @@ test_util_spawn_background_partial_read(void *ptr)
#endif
/* Check it terminated correctly */
- retval = tor_get_exit_code(process_handle);
+ retval = tor_get_exit_code(process_handle, 1);
tt_int_op(retval, ==, expected_exit);
// TODO: Make test-child exit with something other than 0