]> granicus.if.org Git - check/commitdiff
skip tests requiring setenv if none is available
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 22 Sep 2013 17:23:00 +0000 (17:23 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Sun, 22 Sep 2013 17:23:00 +0000 (17:23 +0000)
These tests were not protected by the HAVE_WORKING_SETENV variable,
but needed to be.

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

tests/check_check_log.c

index 4534a16c0b98488e541cf48b7db2c85340db7fb2..e598b26b95d81b39e0972c82f429be49c6c8c211 100644 (file)
@@ -187,13 +187,17 @@ Suite *make_log_suite(void)
 
   suite_add_tcase(s, tc_core);
   tcase_add_test(tc_core, test_set_log);
+#if HAVE_WORKING_SETENV
   tcase_add_test(tc_core, test_set_log_env);
+#endif /* HAVE_WORKING_SETENV */
   tcase_add_test(tc_core, test_no_set_log);
   tcase_add_test(tc_core, test_double_set_log);
 
   suite_add_tcase(s, tc_core_xml);
   tcase_add_test(tc_core_xml, test_set_xml);
+#if HAVE_WORKING_SETENV
   tcase_add_test(tc_core_xml, test_set_xml_env);
+#endif /* HAVE_WORKING_SETENV */
   tcase_add_test(tc_core_xml, test_no_set_xml);
   tcase_add_test(tc_core_xml, test_double_set_xml);