[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile.spec Makefile.spec2000 Makefile.spec95

Alkis Evlogimenos alkis at cs.uiuc.edu
Fri Feb 27 14:00:40 PST 2004


Changes in directory llvm/test/Programs/External/SPEC:

Makefile.spec updated: 1.27 -> 1.28
Makefile.spec2000 updated: 1.1 -> 1.2
Makefile.spec95 updated: 1.5 -> 1.6

---
Log message:

Make SPEC95 always use ref inputs and switch SPEC2000 to use train inputs for short tests and ref inputs for long tets. Also override the input for CINT2000/188.ammp because it running for too long with these new defaults


---
Diffs of the changes:  (+16 -7)

Index: llvm/test/Programs/External/SPEC/Makefile.spec
diff -u llvm/test/Programs/External/SPEC/Makefile.spec:1.27 llvm/test/Programs/External/SPEC/Makefile.spec:1.28
--- llvm/test/Programs/External/SPEC/Makefile.spec:1.27	Wed Feb 25 23:57:20 2004
+++ llvm/test/Programs/External/SPEC/Makefile.spec	Fri Feb 27 13:59:38 2004
@@ -7,13 +7,6 @@
 
 include $(LEVEL)/Makefile.config
 
-# RUN_TYPE - Either ref, test, or train.  May be specified on the command line.
-ifdef LARGE_PROBLEM_SIZE
-RUN_TYPE  := train
-else
-RUN_TYPE  := test
-endif
-
 ## Information the test should have provided...
 ifndef STDOUT_FILENAME
 STDOUT_FILENAME := standard.out


Index: llvm/test/Programs/External/SPEC/Makefile.spec2000
diff -u llvm/test/Programs/External/SPEC/Makefile.spec2000:1.1 llvm/test/Programs/External/SPEC/Makefile.spec2000:1.2
--- llvm/test/Programs/External/SPEC/Makefile.spec2000:1.1	Wed Feb 25 18:01:21 2004
+++ llvm/test/Programs/External/SPEC/Makefile.spec2000	Fri Feb 27 13:59:39 2004
@@ -9,4 +9,14 @@
 SPEC_ROOT := $(SPEC2000_ROOT)
 CPPFLAGS += -DSPEC_CPU2000
 
+# RUN_TYPE - Either ref, test, or train.  May be specified on the command line.
+# individual tests may override this to provide better input sizes
+ifndef RUN_TYPE
+ifdef LARGE_PROBLEM_SIZE
+RUN_TYPE  := ref
+else
+RUN_TYPE  := train
+endif
+endif
+
 include $(LEVEL)/test/Programs/External/SPEC/Makefile.spec


Index: llvm/test/Programs/External/SPEC/Makefile.spec95
diff -u llvm/test/Programs/External/SPEC/Makefile.spec95:1.5 llvm/test/Programs/External/SPEC/Makefile.spec95:1.6
--- llvm/test/Programs/External/SPEC/Makefile.spec95:1.5	Wed Feb 25 18:01:21 2004
+++ llvm/test/Programs/External/SPEC/Makefile.spec95	Fri Feb 27 13:59:39 2004
@@ -9,4 +9,10 @@
 SPEC_ROOT := $(SPEC95_ROOT)
 CPPFLAGS += -DSPEC_CPU95
 
+# RUN_TYPE - Either ref, test, or train.  May be specified on the command line.
+# individual tests may override this to provide better input sizes
+ifndef RUN_TYPE
+RUN_TYPE  := ref
+endif
+
 include $(LEVEL)/test/Programs/External/SPEC/Makefile.spec





More information about the llvm-commits mailing list