From 1b563e797bbf89867588d448c3ff95fade23cead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Thu, 24 Oct 2013 22:28:17 +0200 Subject: [PATCH] Have check get the fork status from env. variable (set CK_FORK_GETENV flag) --- test/test_runner.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_runner.c b/test/test_runner.c index 3bd0a05..c485f6f 100644 --- a/test/test_runner.c +++ b/test/test_runner.c @@ -62,6 +62,8 @@ main (int argc, char *argv[]) if (xml_output) srunner_set_xml(sr, "result.xml"); + srunner_set_fork_status(sr, CK_FORK_GETENV); + for(i = 0; i < sizeof suites/sizeof suites[0]; i++) { srunner_add_suite(sr, suites[i]());