From 547643d357aadfcb402ec9b951e23975da8593cc Mon Sep 17 00:00:00 2001 From: Carlos Maniero Date: Tue, 18 Apr 2023 21:19:32 -0300 Subject: tests: Include parser_parse_function test Signed-off-by: Carlos Maniero Reviewed-by: Johnny Richard --- test/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 51ece02..3845b92 100644 --- a/test/Makefile +++ b/test/Makefile @@ -14,8 +14,11 @@ all: munit.o $(TESTS) clean: $(RM) *.o *_test -string_view_test: munit.o string_view_test.o ../build/string_view.o +string_view_test: munit.o ../build/string_view.o string_view_test.o $(CC) $? $(CFLAGS) -o $@ -lexer_test: munit.o lexer_test.o ../build/lexer.o ../build/string_view.o +lexer_test: munit.o ../build/string_view.o ../build/lexer.o lexer_test.o + $(CC) $? $(CFLAGS) -o $@ + +parser_test: munit.o ../build/string_view.o ../build/lexer.o ../build/ast.o ../build/parser.o parser_test.o $(CC) $? $(CFLAGS) -o $@ -- cgit v1.2.3