special 't' target in the Makefile to just build the code and run tests without regenerating table files

This commit is contained in:
mike@arpaia.co 2014-08-20 01:04:35 -07:00
parent 007a2e3519
commit cd1e746069

View File

@ -61,12 +61,13 @@ pull:
git fetch origin
git rebase master --stat
runtests: all
runtests: all test
./build/tools/flag_test --flagfile=tools/osquery.flagfile
find build -name "*_tests" -type f -exec '{}' \;
tables:
python tools/gentables.py
t: build test
test:
find build -name "*_tests" -type f -exec '{}' \;