[llvm-commits] [test-suite] r168234 - /test-suite/trunk/SingleSource/Makefile.singlesrc

Michael Gottesman mgottesman at apple.com
Fri Nov 16 16:50:25 PST 2012


Author: mgottesman
Date: Fri Nov 16 18:50:25 2012
New Revision: 168234

URL: http://llvm.org/viewvc/llvm-project?rev=168234&view=rev
Log:

Added EXTRA_PROGRAMS_TO_SKIP so we can specify SingleSource tests to skip at the command line without effecting the current usages of PROGRAMS_TO_SKIP.


Modified:
    test-suite/trunk/SingleSource/Makefile.singlesrc

Modified: test-suite/trunk/SingleSource/Makefile.singlesrc
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Makefile.singlesrc?rev=168234&r1=168233&r2=168234&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Makefile.singlesrc (original)
+++ test-suite/trunk/SingleSource/Makefile.singlesrc Fri Nov 16 18:50:25 2012
@@ -16,8 +16,15 @@
 #
 ##===----------------------------------------------------------------------===##
 
-# Force lazy substitution.
-ALL_PROGRAMS_TO_SKIP = $(PROGRAMS_TO_SKIP)
+# Force lazy substitution. Additionally note that
+# EXTRA_PROGRAMS_TO_SKIP is a variable that has been added so at the
+# command line, a user can add an extra unittest to skip without
+# affecting any of the current functionality in the test suite with
+# respect to PROGRAMS_TO_SKIP. Since this functionality only occurs in
+# the SingleSource part of the test suite I did not create an EXTRA
+# PROGRAMS_TO_SKIP variable for the MultiSource/External directories
+# of the test suite.
+ALL_PROGRAMS_TO_SKIP = $(PROGRAMS_TO_SKIP) $(EXTRA_PROGRAMS_TO_SKIP)
 
 # If DISABLE_CXX is given, add any C++ programs to the list to skip.
 ifdef DISABLE_CXX





More information about the llvm-commits mailing list