From 08a5f3441675c446482b473777cbba53d5191f20 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Sun, 21 Jun 2026 17:20:13 +0200 Subject: rework: add testing framework --- makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index db36c5c..1bda58d 100644 --- a/makefile +++ b/makefile @@ -1,16 +1,15 @@ -.PHONY: all lib test tests clean +.PHONY: all libcsv test tests clean -all: lib +all: libcsv -lib tests: +libcsv tests: $(MAKE) -C $@ test: tests - build/tester + tests/bin/tester --gtest_shuffle clean: - $(MAKE) -C lib clean + $(MAKE) -C libcsv clean $(MAKE) -C tests clean - rm -rf build # Testdaten: https://excelbianalytics.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/ -- cgit v1.3