[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Sandbox.sh
Chris Lattner
lattner at cs.uiuc.edu
Sun Jun 1 21:34:01 PDT 2003
Changes in directory llvm/test/Programs/External/SPEC:
Sandbox.sh updated: 1.1 -> 1.2
---
Log message:
Add support for an "all" directory
---
Diffs of the changes:
Index: llvm/test/Programs/External/SPEC/Sandbox.sh
diff -u llvm/test/Programs/External/SPEC/Sandbox.sh:1.1 llvm/test/Programs/External/SPEC/Sandbox.sh:1.2
--- llvm/test/Programs/External/SPEC/Sandbox.sh:1.1 Wed May 14 18:21:11 2003
+++ llvm/test/Programs/External/SPEC/Sandbox.sh Sun Jun 1 21:32:57 2003
@@ -16,10 +16,13 @@
mkdir Output/$TEST_UID 2> /dev/null
cd Output/$TEST_UID
-rm -f *
+rm -rf *
# Copy all of the test input files into the current directory...
-cp $INPUT_DIR/* .
+cp -r $INPUT_DIR/* .
+
+# If there is an "all" input directory, take it as well...
+cp -r $INPUT_DIR/../../all/input/* . 2&>1 > /dev/null
# Run the program now...
echo Running: $*
More information about the llvm-commits
mailing list