We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04bca1f commit afdc74bCopy full SHA for afdc74b
Makefile
@@ -162,7 +162,8 @@ $(BUILD_TEST)/%.o: %.c
162
# Run code coverage (--css-file $(CUSTOM_CSS))
163
test: $(TARGET) $(TEST_TARGET)
164
$(SQLITE3) ":memory:" -cmd ".bail on" ".load ./$<" "SELECT cloudsync_version();"
165
- set -e; for t in $(TEST_TARGET); do ./$$t; done
+ ./dist/unit
166
+ ./dist/main
167
ifneq ($(COVERAGE),false)
168
mkdir -p $(COV_DIR)
169
lcov --capture --directory . --output-file $(COV_DIR)/coverage.info $(subst src, --include src,${COV_FILES})
0 commit comments