Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
28 lines
296 B
Bash
Executable File
28 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Testing lights"
|
|
tranzport_lights &
|
|
A=$!
|
|
sleep 30
|
|
kill $A
|
|
echo "Testing interleaved_reads/writes"
|
|
tranzport &
|
|
A=$!
|
|
sleep 30
|
|
kill $A
|
|
|
|
exit 0
|
|
|
|
# not done yet
|
|
echo "Testing_screen"
|
|
tranzport_screen &
|
|
A=$!
|
|
sleep 30
|
|
kill $A
|
|
echo "Testing_reads"
|
|
tranzport_read &
|
|
A=$!
|
|
sleep 30
|
|
kill $A
|
|
|