mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Add notes on running unit tests.
git-svn-id: svn://localhost/ardour2/branches/3.0@11141 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b6438ed1f6
commit
431a30b3a9
2 changed files with 30 additions and 0 deletions
17
doc/waft
Normal file
17
doc/waft
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) Paul Davis 2011-2012
|
||||
|
||||
while true ; do
|
||||
if [ -x ./waf ] ; then
|
||||
./waf "$@"
|
||||
if [ "$?" -ne "0" ]; then
|
||||
exit 1
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
cd ..
|
||||
if [ `pwd` = '/' ] ; then break; fi
|
||||
done
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue