summaryrefslogtreecommitdiff
path: root/tools/windows_packaging/wine-ardour-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/windows_packaging/wine-ardour-tests.sh')
-rwxr-xr-xtools/windows_packaging/wine-ardour-tests.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/windows_packaging/wine-ardour-tests.sh b/tools/windows_packaging/wine-ardour-tests.sh
deleted file mode 100755
index a4bd033c8b..0000000000
--- a/tools/windows_packaging/wine-ardour-tests.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-. ./wine-env.sh
-
-if [ "$1" == "--list" ]; then
- TESTS='test_*'
- for test_program in `find -name "$TESTS" -type f -perm /u+x`;
- do
- echo "$test_program"
- done
- exit 0
-fi
-
-if [ "$1" == "--single" ] || [ "$2" == "--single" ]; then
- if [ "$1" == "--single" ]; then
- TESTS="test_*$2*"
- elif [ "$2" == "--single" ]; then
- TESTS="test_*$3*"
- else
- TESTS='test_*'
- fi
- for test_program in `find . -name "$TESTS" -type f -perm /u+x`;
- do
- echo "Running $test_program..."
- wine "$test_program"
- done
-else
- wine run-tests.exe
-fi