Skip to content

Commit afdc74b

Browse files
committed
hardcode test executables
1 parent 04bca1f commit afdc74b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ $(BUILD_TEST)/%.o: %.c
162162
# Run code coverage (--css-file $(CUSTOM_CSS))
163163
test: $(TARGET) $(TEST_TARGET)
164164
$(SQLITE3) ":memory:" -cmd ".bail on" ".load ./$<" "SELECT cloudsync_version();"
165-
set -e; for t in $(TEST_TARGET); do ./$$t; done
165+
./dist/unit
166+
./dist/main
166167
ifneq ($(COVERAGE),false)
167168
mkdir -p $(COV_DIR)
168169
lcov --capture --directory . --output-file $(COV_DIR)/coverage.info $(subst src, --include src,${COV_FILES})

0 commit comments

Comments
 (0)