From bfa4eece9dc78bfc709f7c73296fc12a61e2cb7c Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Mon, 6 Sep 2021 10:25:31 +0200 Subject: [PATCH] chore(compiler): Add build target for e2e test --- compiler/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 0e957db78..29998197d 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -4,14 +4,16 @@ build: -DMLIR_DIR=${LLVM_PROJECT}/build/lib/cmake/mlir \ -DCONCRETE_FFI_RELEASE=${CONCRETE_PROJECT}/target/release +build-end-to-end-jit: + make -C build/ end_to_end_jit_test + zamacompiler: make -C build/ zamacompiler test-check: zamacompiler ${LLVM_PROJECT}/build/bin/llvm-lit -v tests/ -test-end-to-end-jit: - make -C build/ end_to_end_jit_test +test-end-to-end-jit: build-end-to-end-jit ./build/bin/end_to_end_jit_test test: test-check test-end-to-end-jit