Skip to content

Commit

Permalink
Cargo update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmoon79 committed Sep 17, 2022
1 parent 6d64fd6 commit 6805e2b
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 85 deletions.
164 changes: 87 additions & 77 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ edition = "2021"

[dev-dependencies]
arraystring = "0.3.0"
bstr = "0.2.17"
criterion = "0.3.5"
flamegraph = "0.6.1"
jetscii = "0.5.1"
memchr = "2.4.1"
bstr = "1.0.1"
criterion = "0.4.0"
flamegraph = "0.6.2"
jetscii = "0.5.3"
memchr = "2.5.0"
tempfile = "3.3.0"
test-case = "2.2.1"

Expand Down
6 changes: 3 additions & 3 deletions tools/valgrind-dhat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ if ! valgrind=$(which valgrind); then
exit 1
fi

declare -r bin=./target/release/s4
PROGRAM=${PROGRAM-./target/release/s4}

(set -x; uname -a)
(set -x; git log -n1 --format='%h %D') || true
(set -x; "${bin}" --version)
(set -x; "${PROGRAM}" --version)
(set -x; $valgrind --version) | head -n1

echo
Expand Down Expand Up @@ -66,7 +66,7 @@ declare -a files=(

exec \
valgrind --tool=dhat \
"${bin}" \
"${PROGRAM}" \
-z 0xFFFF \
-a 20000101T000000 -b 20000101T080000 \
"${files[@]}" \
Expand Down

0 comments on commit 6805e2b

Please sign in to comment.