[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile
John Criswell
criswell at cs.uiuc.edu
Sat Jul 31 09:31:24 PDT 2004
Changes in directory llvm/test/Programs/External/SPEC:
Makefile updated: 1.10 -> 1.11
---
Log message:
Changed to PARALLEL_DIRS so that SPEC95 will be tested even if
something in SPEC2000 fails.
---
Diffs of the changes: (+4 -4)
Index: llvm/test/Programs/External/SPEC/Makefile
diff -u llvm/test/Programs/External/SPEC/Makefile:1.10 llvm/test/Programs/External/SPEC/Makefile:1.11
--- llvm/test/Programs/External/SPEC/Makefile:1.10 Mon Mar 1 09:46:27 2004
+++ llvm/test/Programs/External/SPEC/Makefile Sat Jul 31 11:31:13 2004
@@ -1,17 +1,17 @@
LEVEL = ../../../..
-DIRS := CFP2000 CINT2000 CINT95
+PARALLEL_DIRS := CFP2000 CINT2000 CINT95
include ${LEVEL}/Makefile.config
#
# Remove SPEC95 and SPEC2000 per the user's configuration
#
ifndef USE_SPEC2000
-DIRS := $(filter-out CFP2000/, $(DIRS))
-DIRS := $(filter-out CINT2000/, $(DIRS))
+PARALLEL_DIRS := $(filter-out CFP2000/, $(PARALLEL_DIRS))
+PARALLEL_DIRS := $(filter-out CINT2000/, $(PARALLEL_DIRS))
endif
ifndef USE_SPEC95
-DIRS := $(filter-out CINT95/, $(DIRS))
+PARALLEL_DIRS := $(filter-out CINT95/, $(PARALLEL_DIRS))
endif
include ${LEVEL}/test/Programs/Makefile.programs
More information about the llvm-commits
mailing list