[llvm-commits] [test-suite] r92125 - /test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile
Julien Lerouge
jlerouge at apple.com
Thu Dec 24 00:55:21 PST 2009
Author: jlerouge
Date: Thu Dec 24 02:55:20 2009
New Revision: 92125
URL: http://llvm.org/viewvc/llvm-project?rev=92125&view=rev
Log:
Set correct command line if SMALL_PROBLEM_SIZE is set.
Modified:
test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile
Modified: test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile?rev=92125&r1=92124&r2=92125&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2000/177.mesa/Makefile Thu Dec 24 02:55:20 2009
@@ -4,8 +4,12 @@
ifdef LARGE_PROBLEM_SIZE
RUN_OPTIONS := -frames 500
else
+ifdef SMALL_PROBLEM_SIZE
+RUN_OPTIONS := -frames 10
+else
RUN_OPTIONS := -frames 100
endif
+endif
RUN_OPTIONS += -meshfile mesa.in -ppmfile mesa.ppm
CPPFLAGS =
More information about the llvm-commits
mailing list