[llvm-commits] [test-suite] r65874 - /test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile

Dan Gohman gohman at apple.com
Mon Mar 2 13:33:25 PST 2009


Author: djg
Date: Mon Mar  2 15:33:25 2009
New Revision: 65874

URL: http://llvm.org/viewvc/llvm-project?rev=65874&view=rev
Log:
Tests like 'ifeq ($(RUN_TYPE),test' must be done after including
Makefile.spec2006, which sets RUN_TYPE.

Modified:
    test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile

Modified: test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile?rev=65874&r1=65873&r2=65874&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile Mon Mar  2 15:33:25 2009
@@ -8,14 +8,6 @@
 
 FP_ABSTOLERANCE = 0
 
-ifeq ($(RUN_TYPE),test)
-  FP_TOLERANCE     = 0.0002
-  RUN_OPTIONS      = SPEC-benchmark-test
-else
-  FP_TOLERANCE     = 0.00005
-  RUN_OPTIONS      = SPEC-benchmark-train
-endif
-
 STDOUT_FILENAME := SPEC-benchmark.log
 
 LDFLAGS = -lstdc++ -lm
@@ -23,3 +15,10 @@
 
 include ../../Makefile.spec2006
 
+ifeq ($(RUN_TYPE),test)
+  FP_TOLERANCE     = 0.0002
+  RUN_OPTIONS      = SPEC-benchmark-test
+else
+  FP_TOLERANCE     = 0.00005
+  RUN_OPTIONS      = SPEC-benchmark-train
+endif





More information about the llvm-commits mailing list