[llvm-commits] CVS: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile

Bill Wendling isanbard at gmail.com
Wed Sep 6 17:09:03 PDT 2006



Changes in directory llvm-test/External/SPEC/CINT2006/400.perlbench:

Makefile updated: 1.3 -> 1.4
---
Log message:

Change STDOUT_FILENAME to one which exists in the data/test/output
directory so that we don't get an error during testing.


---
Diffs of the changes:  (+5 -1)

 Makefile |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletion(-)


Index: llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile
diff -u llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.3 llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.4
--- llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile:1.3	Wed Sep  6 16:55:34 2006
+++ llvm-test/External/SPEC/CINT2006/400.perlbench/Makefile	Wed Sep  6 19:08:49 2006
@@ -33,10 +33,14 @@
 include ../../Makefile.spec2006
 
 ifeq ($(RUN_TYPE),test)
+  # test.out isn't specified in the REF_IN_DIR/test/data/output directory, so
+  # use one of the .out files that does exist in that directory.
   RUN_OPTIONS      = -I./lib test.pl
-  STDOUT_FILENAME := test.out
+  STDOUT_FILENAME := append.out
+  STDERR_FILENAME := append.err
 else
   RUN_OPTIONS      = -I./lib scrabbl.pl
   STDIN_FILENAME  := scrabbl.in
   STDOUT_FILENAME := scrabbl.out
+  STDERR_FILENAME := scrabbl.err
 endif






More information about the llvm-commits mailing list