aboutsummaryrefslogtreecommitdiff
path: root/src/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Justfile')
-rw-r--r--src/Justfile7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Justfile b/src/Justfile
index 2daa4c2..9c97185 100644
--- a/src/Justfile
+++ b/src/Justfile
@@ -12,13 +12,8 @@ run-all-tests:
rm -fr {{target_dir / "candelabra"}}
echo "Candelabra Path: {{candelabra}}"
- @just section-start cost-models
@IMPLS=`{{candelabra}} list-library 2>&1 | cut -d ']' -f 2 | grep ::`; for impl in $IMPLS; do just cost-model $impl; done
- @just section-end cost-models
-
- @just section-start comparisons
- cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just compare ${i%%/}; done
- @just section-end comparisons
+ @cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just compare ${i%%/}; done
cost-model impl: (section-start ("cost-model-" + impl)) && (section-end ("cost-model-" + impl))
{{candelabra}} cost-model {{impl}}