From be7301387c4127a439d089ba124ae8d0ae458667 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Tue, 24 Aug 2021 17:33:00 +0200 Subject: [PATCH] chore: add then end-to-end-jit test to the make test target --- compiler/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index dc3fbe0fd..0e957db78 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -7,8 +7,14 @@ build: zamacompiler: make -C build/ zamacompiler -test: +test-check: zamacompiler ${LLVM_PROJECT}/build/bin/llvm-lit -v tests/ +test-end-to-end-jit: + make -C build/ end_to_end_jit_test + ./build/bin/end_to_end_jit_test + +test: test-check test-end-to-end-jit + test_python: pytest -v tests/python \ No newline at end of file