From a7c6c350509b2544f1d423ca1ebcd5daeda5cb58 Mon Sep 17 00:00:00 2001 From: Carlos Maniero Date: Wed, 19 Apr 2023 22:16:32 -0300 Subject: tests: Add integration tests This tests perform the whole cycle. It takes the output from pipac compile, execute and check the returned status code. Signed-off-by: Carlos Maniero Signed-off-by: Johnny Richard --- test/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 3845b92..1858166 100644 --- a/test/Makefile +++ b/test/Makefile @@ -22,3 +22,6 @@ lexer_test: munit.o ../build/string_view.o ../build/lexer.o lexer_test.o parser_test: munit.o ../build/string_view.o ../build/lexer.o ../build/ast.o ../build/parser.o parser_test.o $(CC) $? $(CFLAGS) -o $@ + +integration_test: munit.o integration_test.o + $(CC) $? $(CFLAGS) -o $@ -- cgit v1.2.3