diff options
-rw-r--r-- | src/Justfile | 5 |
1 files changed, 4 insertions, 1 deletions
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 |