summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-11-18 22:24:33 +0900
commit3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch)
tree2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh
parentff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff)
downloadextra-dependencies-master.tar.gz
extra-dependencies-master.zip
Remove uncrustify-trinity.HEADmaster
It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh')
-rwxr-xr-xdebian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh40
1 files changed, 0 insertions, 40 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh
deleted file mode 100755
index 76fac4bf..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/fixtest.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh
-# $Id: difftest.sh 798 2007-07-24 16:01:09Z bengardner $
-#
-# Copies the files for a test from results/ to output/
-#
-
-if [ -z "$1" ] ; then
- fn=$(basename $0)
- echo "Usage: $fn TEST [...]"
- echo
- echo " TEST : the test number pattern, may contain wildcards"
- echo " You can put multiple test numbers on the command line"
- echo
- echo "The script will find all matching tests in the results folder and copy them"
- echo "into the output folder."
- echo
- echo "Examples:"
- echo "$fn 30014 # copy test 30014"
- echo "$fn 30014 00110 # copy tests 30014 and 00110"
- echo "$fn '*' # copy all tests"
- exit 1
-fi
-
-while [ -n "$1" ] ; do
- # Use '*' as the pattern if one wasn't defined
- patt=$1
- path="results"
-
- # Find the tests that match, remove the .svn folders
- files=$(find $path -name "$patt-*" -type f | sed "/\.svn/d")
-
- did1=''
- for t in $files ; do
- other=$(echo $t | sed "s/^results/output/")
- echo "cp $t $other"
- cp $t $other
- done
-
- shift 1
-done