[llvm-commits] CVS: llvm-test/External/SPEC/Sandbox.sh

Chris Lattner lattner at cs.uiuc.edu
Thu Feb 23 17:03:13 PST 2006



Changes in directory llvm-test/External/SPEC:

Sandbox.sh updated: 1.8 -> 1.9
---
Log message:

Add support for sandy bz2 files


---
Diffs of the changes:  (+7 -4)

 Sandbox.sh |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)


Index: llvm-test/External/SPEC/Sandbox.sh
diff -u llvm-test/External/SPEC/Sandbox.sh:1.8 llvm-test/External/SPEC/Sandbox.sh:1.9
--- llvm-test/External/SPEC/Sandbox.sh:1.8	Tue Jun 24 13:49:38 2003
+++ llvm-test/External/SPEC/Sandbox.sh	Thu Feb 23 19:03:01 2006
@@ -18,16 +18,19 @@
 cd Output/$TEST_UID
 rm -rf *
 
-# Copy all of the test input files into the current directory...
+# Copy all of the test input files into the current directory.
 cp -r $INPUT_DIR/* .
 
-# If there is an "all" input directory, take it as well...
+# If there is an "all" input directory, take it as well.
 cp -r $INPUT_DIR/../../all/input/* . > /dev/null 2>&1 
 
-# Run the program now...
+# If any of the input files is a .bz2 file, uncompress it now.
+bunzip2 *.bz2
+
+# Run the program now.
 echo Running: $*
 $*
 
-# This script is always successful...
+# This script is always successful.
 exit 0
 






More information about the llvm-commits mailing list