1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-23 11:47:24 +01:00
fwbuilder/unit_tests.sh
Roman Bovsunivskiy c72f02051d Moved function that runs command for all unit tests to unit_test.sh.
Testclean target should work now.
2010-02-22 17:05:41 +00:00

12 lines
155 B
Bash
Executable File

#!/bin/bash
action=$@
for directory in $(find . -name unit_tests)
do
home=`pwd`
cd $directory
qmake -spec $QMAKESPEC
$action
cd $home
done