Merge branch 'develop' into feature/ubjson

This commit is contained in:
Niels Lohmann 2018-01-14 10:10:56 +01:00
commit 1b54d4a5aa
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
33 changed files with 16786 additions and 650 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