summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2013-08-11 18:13:41 +1000
committerTim Mayberry <mojofunk@gmail.com>2013-12-07 20:48:19 +1000
commit20f3e4d1fcf5dba4f6963eaec55e723cbb73de1d (patch)
tree9f5999a8a771f92036066494fb2b80b570c25e76 /tools
parent74ab358b21db88d8360ec432ac4a0b479a875c71 (diff)
Rename run-wine script to wine-ardour and run library tests from new scripts
Diffstat (limited to 'tools')
-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