[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/450.soplex/Makefile

Bill Wendling isanbard at gmail.com
Wed Sep 6 13:41:43 PDT 2006



Changes in directory llvm-test/External/SPEC/CFP2006/450.soplex:

Makefile updated: 1.1 -> 1.2
---
Log message:

Modified Makefiles to handle multiple directories.


---
Diffs of the changes:  (+4 -3)

 Makefile |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Index: llvm-test/External/SPEC/CFP2006/450.soplex/Makefile
diff -u llvm-test/External/SPEC/CFP2006/450.soplex/Makefile:1.1 llvm-test/External/SPEC/CFP2006/450.soplex/Makefile:1.2
--- llvm-test/External/SPEC/CFP2006/450.soplex/Makefile:1.1	Fri Sep  1 18:27:13 2006
+++ llvm-test/External/SPEC/CFP2006/450.soplex/Makefile	Wed Sep  6 15:41:12 2006
@@ -6,7 +6,6 @@
 
 LEVEL = ../../../..
 
-FP_TOLERANCE    = 0.0001
 FP_ABSTOLERANCE = 1.0e-5
 
 include ../../Makefile.spec2006
@@ -14,10 +13,12 @@
 CPPFLAGS += -DNDEBUG
 
 ifeq ($(RUN_TYPE),test)
-  RUN_OPTIONS     := -s1 -e -m10000 test.mps
+  FP_TOLERANCE     = 0.0001
+  RUN_OPTIONS      = -s1 -e -m10000 test.mps
   STDOUT_FILENAME := test.out
 else
-  RUN_OPTIONS     := -s1 -e -m1200 train.mps
+  FP_TOLERANCE     = 20
+  RUN_OPTIONS      = -s1 -e -m1200 train.mps
   STDOUT_FILENAME := train.out
 endif
 






More information about the llvm-commits mailing list