diff options
author | Aria Shrimpton <me@aria.rip> | 2024-02-24 20:30:59 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-02-24 20:30:59 +0000 |
commit | 2e5a2e316174be7788a5f08213d596b5969e777b (patch) | |
tree | ac3fa457506d2a79bc4738070d6934cf2fa16449 /src | |
parent | 825a73185848650d1877e9c3b899ade84f0bbbb5 (diff) |
clean criterion directory before running benchmarks
Diffstat (limited to 'src')
-rw-r--r-- | src/Justfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Justfile b/src/Justfile index 3a1c964..7143446 100644 --- a/src/Justfile +++ b/src/Justfile @@ -10,6 +10,7 @@ export RUST_LOG := "debug" run-all-tests: which candelabra-cli 2>/dev/null || cargo build rm -fr {{target_dir / "candelabra"}} + rm -fr {{tests_dir / "target/criterion" 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 |