From 2b38ad3c800ce87cf3bb8d1fd571244501be0be8 Mon Sep 17 00:00:00 2001 From: Fran Date: Fri, 16 Aug 2024 17:44:10 -0300 Subject: [PATCH] makefile: add era-test --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 106b1a53..0ee50874 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: clean lint test deps submodules +.PHONY: clean lint test deps submodules era-test LLVM_PATH?=$(shell pwd)/era-compiler-tester/target-llvm/target-final/ @@ -26,3 +26,6 @@ test: deps # CI test uses LLVM from the era-compiler-llvm repository, doesn't need to build it ci-test: export LLVM_SYS_170_PREFIX=$(LLVM_PATH) && $(MAKE) test + +era-test: submodules + cd ./zksync-era/core/lib/multivm && cargo t