diff options
author | Aria Shrimpton <me@aria.rip> | 2024-03-07 16:29:01 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-03-07 16:29:01 +0000 |
commit | ec9b164e0ff3ef323958b45cb6046e25b3d865bd (patch) | |
tree | 197a106955014abea44c00dff6ce9d8d87a7849d /src | |
parent | 052642b8aa04ddccbe684c65333c3a959736c479 (diff) |
just do selection, not comparison for most runs
Diffstat (limited to 'src')
-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 |