From e22abc4eaf4f1446c6ac31e4b709cb5206d4fe3b Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 1 Aug 2018 21:55:36 +1200 Subject: Add simple language test cases, fix empty line bug --- test/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 44d4969..1c99ced 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,9 +1,6 @@ CFLAGS += -I../ TESTS = \ - bin/test-whitespace-input \ - bin/test-short-keyword \ - bin/test-duplicate-input \ bin/test-logic-and \ bin/test-logic-or \ bin/test-logic-nand \ @@ -14,7 +11,7 @@ TESTS = \ all: $(TESTS) -bin/test-%: test-%.c ../gate.o ../parser.o ../logic.o +bin/test-%: test-%.c ../gate.o ../logic.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ .PHONY: clean @@ -28,3 +25,4 @@ clean: .PHONY: test test: ./test.sh + ./run-lang-tests.sh -- cgit v1.1