diff options
author | Nadrieril | 2024-05-23 15:46:45 +0200 |
---|---|---|
committer | Guillaume Boisseau | 2024-05-24 14:24:38 +0200 |
commit | d37a302762fef4ea91b88f0ca8feb73612ff5382 (patch) | |
tree | bad397bdcd281bb87d7d1f814d9d2cf1128ac5e5 /Makefile | |
parent | ca045d57b6cc3fc700efe07bfc257231edf814e5 (diff) |
runner: Do both steps of generation at once
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -174,8 +174,7 @@ endif # which backends to use and sets test-specific options. .PHONY: test-% test-%: - $(TEST_RUNNER_EXE) charon $(CHARON_EXE) $(INPUTS_DIR) $(LLBC_DIR) "$*" $(CHARON_OPTIONS) - $(TEST_RUNNER_EXE) aeneas $(AENEAS_EXE) $(LLBC_DIR) "$*" $(AENEAS_OPTIONS) + $(TEST_RUNNER_EXE) $(CHARON_EXE) $(AENEAS_EXE) $(INPUTS_DIR) $(LLBC_DIR) "$*" $(AENEAS_OPTIONS) echo "# Test $* done" # ============================================================================= |