moved libfwbuilder unit tests

This commit is contained in:
Vadim Kurland
2010-12-25 20:22:46 -08:00
parent 2417543eba
commit a6ab20397c
29 changed files with 0 additions and 23 deletions
@@ -1,12 +0,0 @@
DOLLAR = $
build_tests.commands = echo "Building tests..."; \
./unit_tests.sh make build_tests
run_tests.commands = echo "Running tests..."; \
./unit_tests.sh make run_tests
clean_tests.commands = echo "Cleaning tests..."; \
./unit_tests.sh make clean_tests
QMAKE_EXTRA_TARGETS += run_tests clean_tests build_tests
@@ -1,11 +0,0 @@
#!/bin/bash
commands=$@
for directory in `find . -maxdepth 1 -type d -regex '\./[A-Za-z0-9\-\_]*'`
do
cd $directory
[ ! -e Makefile ] && qmake -spec $QMAKESPEC
$commands || exit 1
cd -
done;