Files
Scanning the repository...
Last update 9 years 10 months
by Rushan Shaymardanov
| Filestests | |
|---|---|
| .. | |
| button_fsm_tests.c | |
| dbg.h | |
| hall_fsm_tests.c | |
| messages_tests.c | |
| minunit.h | |
| port_tests.c | |
| room_fsm_tests.c | |
| runtests.sh | |
| timer_mock.c |
runtests.shecho "Running unit tests:" for i in tests/*_tests do if test -f $i then if $VALGRIND ./$i 2>> tests/tests.log then echo $i PASS else echo "ERROR in test $i: here's tests/tests.log" echo "------" tail tests/tests.log exit 1 fi fi done echo ""