diff options
-rw-r--r-- | src/test/test-util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/test-util.c b/src/test/test-util.c index 222af9a73a..57fd19b2a3 100644 --- a/src/test/test-util.c +++ b/src/test/test-util.c @@ -420,7 +420,7 @@ static void check(const char *test, char** expected, bool trailing) { printf("<%s>\n", t); } printf("<<<%s>>>\n", state); - assert(expected[i] == NULL); + assert_se(expected[i] == NULL); assert_se(isempty(state) == !trailing); } @@ -1331,15 +1331,15 @@ static void test_raw_clone(void) { assert_se(raw_getpid() == parent); pid = raw_clone(0, NULL); - assert(pid >= 0); + assert_se(pid >= 0); pid2 = raw_getpid(); log_info("raw_clone: "PID_FMT" getpid()→"PID_FMT" raw_getpid()→"PID_FMT, pid, getpid(), pid2); if (pid == 0) - assert(pid2 != parent); + assert_se(pid2 != parent); else - assert(pid2 == parent); + assert_se(pid2 == parent); } int main(int argc, char *argv[]) { |