diff options
author | David Phillips <david@sighup.nz> | 2018-08-01 21:55:36 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-08-01 21:55:40 +1200 |
commit | e22abc4eaf4f1446c6ac31e4b709cb5206d4fe3b (patch) | |
tree | 60c923bcf3b259f5480c820689d34ad3ff175abf /test/Makefile | |
parent | eff2535b82ff36dda815ef57c385d7767692c3a5 (diff) | |
download | hence-e22abc4eaf4f1446c6ac31e4b709cb5206d4fe3b.tar.xz |
Add simple language test cases, fix empty line bug
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
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 |