mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-09-13 16:39:48 +02:00
Moved function that runs command for all unit tests to unit_test.sh.
Testclean target should work now.
This commit is contained in:
Executable
+12
@@ -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
|
||||
Reference in New Issue
Block a user