Merge branch 'develop' into feature/rfc7396

This commit is contained in:
Niels Lohmann 2018-01-14 10:28:09 +01:00
commit 0e8f01a963
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
134 changed files with 20390 additions and 1770 deletions

View file

@ -78,7 +78,7 @@ test-%: src/unit-%.o src/unit.o ../src/json.hpp thirdparty/catch/catch.hpp
TEST_PATTERN ?= "*"
TEST_PREFIX = ""
check: $(TESTCASES)
check: $(OBJECTS) $(TESTCASES)
@cd .. ; for testcase in $(TESTCASES); do echo "Executing $$testcase..."; $(TEST_PREFIX)test/$$testcase $(TEST_PATTERN) || exit 1; done