mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-09-14 00:49:09 +02:00
moved libfwbuilder unit tests
This commit is contained in:
@@ -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;
|
|
||||||
Reference in New Issue
Block a user