flipped sense of test run flag.
authorChris Koeritz <fred@gruntose.com>
Wed, 11 Sep 2013 13:48:21 +0000 (09:48 -0400)
committerChris Koeritz <fred@gruntose.com>
Wed, 11 Sep 2013 13:48:21 +0000 (09:48 -0400)
production/feisty_meow_config.ini
scripts/clam/target_runner.sh
scripts/clam/variables.def

index 9cce39d620b6f97d6b7cd6619e0de63cf2d97b31..aaf1e575fa3670306e0c42c3260d25a66371248b 100755 (executable)
@@ -24,8 +24,8 @@ DEBUG=t
 # considered errors.
 #STRICT_WARNINGS=t
 
-# enable this if you want to disable the RUN_TARGETS for test execution.
-NO_TEST_RUNS=t
+# comment this out if you do not want to activate RUN_TARGETS for tests.
+#RUN_ALL_TESTS=t
 
 # if this is enabled, then the source dependencies are only generated if
 # they're missing or if this file has changed.  non-lax dependencies get
index 67f96cb8228025feaaf3da288438ceef39afc65e..2678630df59c98ce01ec3699bdf453b24a4c2cf7 100755 (executable)
@@ -16,9 +16,9 @@
 #echo -e "\tDIRTY_FILE=${DIRTY_FILE}"
 #echo -e "\tSUBMAKE_FLAG=${SUBMAKE_FLAG}"
 #echo -e "\tFAILURE_FILE=${FAILURE_FILE}"
-#echo -e "\tNO_TEST_RUNS=${NO_TEST_RUNS}"
+#echo -e "\tRUN_ALL_TESTS=${RUN_ALL_TESTS}"
 
-if [ ! -z "${RUN_TARGETS}" -a -z "${NO_TEST_RUNS}" ]; then
+if [ ! -z "${RUN_TARGETS}" -a ! -z "${RUN_ALL_TESTS}" ]; then
   if [ -f "${DIRTY_FILE}" -o -f "${SUBMAKE_FLAG}" ]; then
     total_exitval=0;
     for program_name in ${RUN_TARGETS}; do
index 3a21425892ec677ce7fd82a1ffc428c2bca4ac35..6bf3d2ca0da71db6f4e80b971ab14ed4c5fcf156 100644 (file)
@@ -155,8 +155,8 @@ ACTUAL_LAST_TARGETS = $(LAST_TARGETS)
 
 # "RUN_TARGETS" is a list of programs that should be executed as part of a make.
 export RUN_TARGETS
-# "NO_TEST_RUNS" turns off execution of the RUN_TARGETS.
-export NO_TEST_RUNS
+# "RUN_ALL_TESTS" turns on execution of the RUN_TARGETS.
+export RUN_ALL_TESTS
 
 # "MAKEFILE_NAME" works with BUILD_BEFORE and BUILD_AFTER.  This allows
 # the name of the makefile in the subdirectory to be changed to something other