mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
Add --list option to script to run ardour tests with wine
This commit is contained in:
parent
7e42cafe39
commit
e9529d26e1
1 changed files with 9 additions and 0 deletions
|
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
. ./wine-env.sh
|
. ./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" ] || [ "$2" == "--single" ]; then
|
||||||
if [ "$1" == "--single" ]; then
|
if [ "$1" == "--single" ]; then
|
||||||
TESTS="test_*$2*"
|
TESTS="test_*$2*"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue