]> granicus.if.org Git - check/commitdiff
Remove explicit set of CK_NOFORK when fork is unavailable
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 22 Sep 2013 21:27:58 +0000 (21:27 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 22 Sep 2013 21:27:58 +0000 (21:27 +0000)
the default behavior is to now set the fork mode as CK_NOFORK
if fork is unavailable. The code being removed is redundant.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@777 64e312b2-a51f-0410-8e61-82d0ca0eb02a

tests/check_check_export_main.c
tests/check_check_master.c

index 27d61a94a3b1b94fb7911c246039ad714091aea3..e0d30fae9ce2cbf2d63e7772115d75af0b9e4fe0 100644 (file)
@@ -15,14 +15,6 @@ int main (void)
   sr = srunner_create (make_master_suite());
   srunner_add_suite(sr, make_log_suite());
   srunner_add_suite(sr, make_fork_suite());
-  
-#if !defined(HAVE_FORK)
-  /*
-   * Overriding the default of running tests in fork mode,
-   * as this system does not have fork()
-   */
-  srunner_set_fork_status(sr,CK_NOFORK);
-#endif /* !HAVE_FORK */
 
   printf ("Ran %d tests in subordinate suite\n", sub_ntests);
   srunner_run_all (sr, CK_VERBOSE);
index 0c92c977d73cdb8aefeaf230d015f0a8de6beb1b..f83e22202c9069598f4bd020959e6621237d636f 100644 (file)
@@ -457,14 +457,6 @@ void setup (void)
 
   srunner_add_suite(sr, make_sub2_suite());
 
-#if !defined(HAVE_FORK)
-  /*
-   * Overriding the default of running tests in fork mode,
-   * as this system does not have fork()
-   */
-  srunner_set_fork_status(sr,CK_NOFORK);
-#endif /* !HAVE_FORK */
-
   srunner_run_all(sr, CK_VERBOSE);
   tr_fail_array = srunner_failures(sr);
   tr_all_array = srunner_results(sr);