summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/windows_packaging/run-wine.sh20
-rwxr-xr-xtools/windows_packaging/wine-ardour-tests.sh5
-rwxr-xr-xtools/windows_packaging/wine-ardour.sh5
-rwxr-xr-xtools/windows_packaging/wine-evoral-tests.sh5
-rwxr-xr-xtools/windows_packaging/wine-pbd-tests.sh5
5 files changed, 20 insertions, 20 deletions
diff --git a/tools/windows_packaging/run-wine.sh b/tools/windows_packaging/run-wine.sh
deleted file mode 100755
index d1d509782f..0000000000
--- a/tools/windows_packaging/run-wine.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-. ./wine-env.sh
-
-if [ "$1" == "--run-tests" ]; then
- if test x$WITH_TESTS != x ; then
- echo "<<<<<<<<<<<<<<<<<< RUNNING LIBPBD TESTS >>>>>>>>>>>>>>>>>>>"
- wine pbd-run-tests.exe
- echo "<<<<<<<<<<<<<<<<<< RUNNING EVORAL TESTS >>>>>>>>>>>>>>>>>>>"
- wine evoral-run-tests.exe
- echo "<<<<<<<<<<<<<<<<<< RUNNING ARDOUR TESTS >>>>>>>>>>>>>>>>>>>"
- wine ardour-run-tests.exe
- else
- echo "No tests to run ..."
- fi
-else
- wine ardour-3.0.exe
-fi
diff --git a/tools/windows_packaging/wine-ardour-tests.sh b/tools/windows_packaging/wine-ardour-tests.sh
new file mode 100755
index 0000000000..22a8876241
--- /dev/null
+++ b/tools/windows_packaging/wine-ardour-tests.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+. ./wine-env.sh
+
+wine run-tests.exe
diff --git a/tools/windows_packaging/wine-ardour.sh b/tools/windows_packaging/wine-ardour.sh
new file mode 100755
index 0000000000..cb6547427e
--- /dev/null
+++ b/tools/windows_packaging/wine-ardour.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+. ./wine-env.sh
+
+wine ardour-3.3.exe
diff --git a/tools/windows_packaging/wine-evoral-tests.sh b/tools/windows_packaging/wine-evoral-tests.sh
new file mode 100755
index 0000000000..50b77f70c8
--- /dev/null
+++ b/tools/windows_packaging/wine-evoral-tests.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+. ./wine-env.sh
+
+wine evoral-run-tests.exe
diff --git a/tools/windows_packaging/wine-pbd-tests.sh b/tools/windows_packaging/wine-pbd-tests.sh
new file mode 100755
index 0000000000..a7306caf6c
--- /dev/null
+++ b/tools/windows_packaging/wine-pbd-tests.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+. ./wine-env.sh
+
+wine pbd-run-tests.exe