Moved function that runs command for all unit tests to unit_test.sh.

Testclean target should work now.
This commit is contained in:
Roman Bovsunivskiy
2010-02-22 17:05:41 +00:00
parent 7b71ab2021
commit c72f02051d
3 changed files with 24 additions and 32 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
action=$@
for directory in $(find . -name unit_tests)
do
home=`pwd`
cd $directory
qmake -spec $QMAKESPEC
$action
cd $home
done