From 351f7628d013d4d39446ce4d02f0716fb742dfaf Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Fri, 5 Nov 2021 12:36:00 +0000 Subject: [PATCH] Separate testing out into types, just unit tests for the moment, allowing for integration tests --- Makefile.in | 8 +++++--- scripts/{test_harness.sh => test_units_harness.sh} | 0 2 files changed, 5 insertions(+), 3 deletions(-) rename scripts/{test_harness.sh => test_units_harness.sh} (100%) diff --git a/Makefile.in b/Makefile.in index 3cd4e2e..ae38339 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/scripts/test_harness.sh b/scripts/test_units_harness.sh similarity index 100% rename from scripts/test_harness.sh rename to scripts/test_units_harness.sh