X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=inline;f=test%2Frun_tests.sh;h=ea88cb05e12ea199d98ebe94b49015ed275f8cd7;hb=4c61653db84fe75fc2bb8f5af9d1ac0343068b4c;hp=be0ed430e0f4d72a3af852436c5f337630eae680;hpb=706954ecdc8313eb3dd0a23190ae9d12cd4392a3;p=bertos.git diff --git a/test/run_tests.sh b/test/run_tests.sh index be0ed430..ea88cb05 100755 --- a/test/run_tests.sh +++ b/test/run_tests.sh @@ -13,7 +13,7 @@ # 2 - build warnings # 3 - execution output # 4 - build commands -VERBOSE=${VERBOSE:-1} +VERBOSE=${VERBOSE:-3} CC=gcc #FIXME: -Ibertos/emul should not be needed @@ -24,7 +24,7 @@ CFLAGS="-W -Wall -Wextra -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wwrit CXX=g++ CXXFLAGS="$CFLAGS" -TESTS=${TESTS:-`find . \ +TESTS?=${TESTS:-`find . \ \( -name .svn -prune -o -name .git -prune -o -name .hg -prune \) \ -o -name "*_test.c" -print` } @@ -33,7 +33,6 @@ SRC_LIST=" bertos/algo/ramp.c bertos/drv/kdebug.c bertos/drv/timer.c - bertos/kern/kfile.c bertos/kern/monitor.c bertos/kern/proc.c bertos/kern/signal.c @@ -64,7 +63,8 @@ SRC_LIST=" bertos/cfg/kfile_debug.c bertos/io/kblock.c bertos/io/kblock_ram.c - bertos/io/kblock_file.c + bertos/io/kblock_posix.c + bertos/io/kfile.c " buildout='/dev/null'