Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# make run - makes everything and runs all the tests.
# make run_tests - run all tests
# make run-% - run specific test file (exclude _test.cpp)
# replace % with given test file
# replace % with given test file, eg run-IRsend
# make clean - removes all files generated by make.
# make install-googletest - install the googletest code suite

Expand Down Expand Up @@ -59,9 +59,9 @@ run : all

run_tests : run

run-% : all
run-% : %_test
echo "RUNNING: $*"; \
./$*
./$*_test

install-googletest :
rm -rf ../lib/googletest
Expand Down