Separate testing out into types, just unit tests for the moment, allowing for integration tests

This commit is contained in:
Hamish Coleman 2021-11-05 12:36:00 +00:00
parent 150c32562d
commit 351f7628d0
2 changed files with 5 additions and 3 deletions

View File

@ -187,9 +187,11 @@ $(N2N_LIB): $(N2N_OBJS)
win32/n2n_win32.a: win32
.PHONY: test
test: tools
scripts/test_harness.sh
.PHONY: test test.units
test: test.units
test.units: tools
scripts/test_units_harness.sh
.PHONY: lint lint.python lint.ccode lint.shell lint.yaml
lint: lint.python lint.ccode lint.shell lint.yaml