citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 5708cfdbec0b1dbed5ccdbf751fc185c29ba5a28
parent a31ac11e06d63a1f41f64106fdc18db53bad815f
Author: kyle <kyle@getaddrinfo.net>
Date:   Sun,  1 Nov 2015 20:16:00 -0700

tests: re-enable all tests again

Diffstat:
Mrun_tests.sh | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/run_tests.sh b/run_tests.sh @@ -9,26 +9,26 @@ fi export SCV_PATH="$HOME/src/scv/compilers" export PATH="$SCV_PATH:$PATH" -export CFLAGS="-pthread -fPIC" +export CFLAGS="-pthread" export LDLIBS="-L../../runtime -lruntime -pthread" -for t in `ls tests/fibonacci/Makefile`; do +for t in `ls tests/*/Makefile`; do dirname=`dirname ${t}` make -s -C $dirname clean if ! make -s -C $dirname; then - echo "$dirname:$RED make prog failed!$RESET" + echo "$dirname:$RED make failed!$RESET" continue fi # diff against the last known good instrumented source if ! make -s -C $dirname "diff"; then - echo "$dirname:$RED source compare failed$RESET" + echo "$dirname:$RED make diff failed$RESET" continue fi # test that the instrumented binary works properly if ! make -s -C $dirname "test"; then - echo "$dirname:$RED test failed!$RESET" + echo "$dirname:$RED make test failed!$RESET" continue fi