diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 22:31:00 +0300 | 
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 22:31:00 +0300 | 
| commit | 215ac4569f897b10215248c4caa3191919a555df (patch) | |
| tree | 6957e76388d3f785c6bfcdbe920b67984bea0c2a /tests/makefile | |
| parent | 5e64dbec81504aaacac1e733edd5230f59670466 (diff) | |
| download | ejit-215ac4569f897b10215248c4caa3191919a555df.tar.gz ejit-215ac4569f897b10215248c4caa3191919a555df.zip  | |
implement some more jit instructions
Diffstat (limited to 'tests/makefile')
| -rw-r--r-- | tests/makefile | 10 | 
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/makefile b/tests/makefile index 4a0afc9..5aeef98 100644 --- a/tests/makefile +++ b/tests/makefile @@ -11,21 +11,15 @@ INCLUDE_FLAGS		:= -I include  COMPILE_TEST		:= $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS)  .PHONY: check -check: $(TESTS) check-bcode check-jit -	echo "Success!" - -.PHONY: check-bcode -check-bcode: $(TESTS) +check: $(TESTS)  	@echo "Running bytecode tests..."  	@set -e; for test in $(TESTS); do \  		echo "Testing: $$test"; \  		./$$test; \  	done - -.PHONY: check-jit -check-jit: $(TESTS)  	@echo "Running jit tests..."  	@set -e; for test in $(TESTS); do \  		echo "Testing: $$test"; \  		./$$test 1; \  	done +	@echo "Success!"  | 
