[llvm-commits] [test-suite] r65887 - /test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile

Dan Gohman gohman at apple.com
Mon Mar 2 14:46:18 PST 2009


Author: djg
Date: Mon Mar  2 16:46:18 2009
New Revision: 65887

URL: http://llvm.org/viewvc/llvm-project?rev=65887&view=rev
Log:
Fix STDOUT_FILENAME for 450.soplex, and add "ref" parameters.

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=65887&r1=65886&r2=65887&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile Mon Mar  2 16:46:18 2009
@@ -18,7 +18,15 @@
 ifeq ($(RUN_TYPE),test)
   FP_TOLERANCE     = 0.0001
   RUN_OPTIONS      = -s1 -e -m10000 test.mps
+  STDOUT_FILENAME := test.out
 else
+ifeq ($(RUN_TYPE),train)
   FP_TOLERANCE     = 20
   RUN_OPTIONS      = -s1 -e -m1200 train.mps
+  STDOUT_FILENAME := train.out
+else
+  FP_TOLERANCE     = 0.02
+  RUN_OPTIONS      = -s1 -e -m3500 ref.mps
+  STDOUT_FILENAME := ref.out
+endif
 endif





More information about the llvm-commits mailing list