[llvm-commits] [test-suite] r65873 - /test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile
Dan Gohman
gohman at apple.com
Mon Mar 2 13:32:30 PST 2009
Author: djg
Date: Mon Mar 2 15:32:30 2009
New Revision: 65873
URL: http://llvm.org/viewvc/llvm-project?rev=65873&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/450.soplex/Makefile
Modified: test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile?rev=65873&r1=65872&r2=65873&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile Mon Mar 2 15:32:30 2009
@@ -10,17 +10,15 @@
CPPFLAGS += -DNDEBUG
+LDFLAGS = -lstdc++ -lm
+LIBS = -lstdc++ -lm
+
+include ../../Makefile.spec2006
+
ifeq ($(RUN_TYPE),test)
FP_TOLERANCE = 0.0001
RUN_OPTIONS = -s1 -e -m10000 test.mps
- STDOUT_FILENAME := test.out
else
FP_TOLERANCE = 20
RUN_OPTIONS = -s1 -e -m1200 train.mps
- STDOUT_FILENAME := train.out
endif
-
-LDFLAGS = -lstdc++ -lm
-LIBS = -lstdc++ -lm
-
-include ../../Makefile.spec2006
More information about the llvm-commits
mailing list