summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNadrieril2024-05-23 15:46:45 +0200
committerGuillaume Boisseau2024-05-24 14:24:38 +0200
commitd37a302762fef4ea91b88f0ca8feb73612ff5382 (patch)
treebad397bdcd281bb87d7d1f814d9d2cf1128ac5e5 /Makefile
parentca045d57b6cc3fc700efe07bfc257231edf814e5 (diff)
runner: Do both steps of generation at once
Diffstat (limited to '')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8a7701cc..88e64646 100644
--- a/Makefile
+++ b/Makefile
@@ -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"
# =============================================================================