From ec9b164e0ff3ef323958b45cb6046e25b3d865bd Mon Sep 17 00:00:00 2001 From: Aria Shrimpton Date: Thu, 7 Mar 2024 16:29:01 +0000 Subject: just do selection, not comparison for most runs --- src/Justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/Justfile b/src/Justfile index f09651f..a96a779 100644 --- a/src/Justfile +++ b/src/Justfile @@ -14,11 +14,14 @@ run-all-tests: echo "Candelabra Path: {{candelabra}}" @IMPLS=`{{candelabra}} list-library 2>&1 | cut -d ']' -f 2 | grep ::`; for impl in $IMPLS; do just cost-model $impl; done - @cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just compare ${i%%/}; done + @cd tests/ && for i in $(ls -d */); do [ "${i%%/}" == "target" ] || just select ${i%%/}; done cost-model impl: (section-start ("cost-model-" + impl)) && (section-end ("cost-model-" + impl)) {{candelabra}} -l cost-model {{impl}} +select proj: (section-start ("compare-" + proj)) && (section-end ("compare-" + proj)) + {{candelabra}} -l --manifest-path {{tests_manifest}} -p {{proj}} select + compare proj: (section-start ("compare-" + proj)) && (section-end ("compare-" + proj)) {{candelabra}} -l --manifest-path {{tests_manifest}} -p {{proj}} select --compare -- cgit v1.2.3