[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile
Bill Wendling
isanbard at gmail.com
Fri Sep 8 18:40:13 PDT 2006
Changes in directory llvm-test/External/SPEC/CINT2006/400.perlbench:
Makefile updated: 1.5 -> 1.6
---
Log message:
Run only the "train" run. This is because the test.pl script the test
run runs outputs a timestamp to STDERR. However, the RunSafely.sh script
dups STDERR to STDOUT, making comparisons useless. If we want to in the
future, we could apply an ugly hack to make it actually work.
---
Diffs of the changes: (+9 -1)
Makefile | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletion(-)
Index: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile
diff -u llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.5 llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.6
--- llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.5 Thu Sep 7 18:17:18 2006
+++ llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile Fri Sep 8 20:39:58 2006
@@ -7,9 +7,17 @@
LEVEL = ../../../..
+# FIXME: The "test" run type outputs timestamps to STDERR. However, the
+# RunSafely.sh script dups STDERR to STDOUT. So testing the difference between
+# the two outputs would require ugly hacks. Let's just run the "train" right
+# now. If we need to run "test" later, we can apply some type of hack to get it
+# to work.
+
+RUN_TYPE := train
+
include $(LEVEL)/Makefile.config
-CPPFLAGS += -DPERL_CORE
+CPPFLAGS += -DPERL_CORE -DI_TIME
ifeq ($(OS),Darwin)
ifeq ($(ARCH),PowerPC)
More information about the llvm-commits
mailing list