libgocryptfs/profiling/write-trace.bash

23 lines
521 B
Bash
Raw Normal View History

#!/bin/bash -eu
#
# Write an execution trace of writing 100MB of data
# to a new gocryptfs mount on /tmp
cd "$(dirname "$0")"
T=$(mktemp -d)
2021-08-31 19:01:47 +02:00
mkdir "$T/a" "$T/b"
2021-08-31 19:01:47 +02:00
../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a"
../gocryptfs -quiet -extpass "echo test" -trace "$T/trace" \
"$T/a" "$T/b"
# Cleanup trap
trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT
# Write only 1x100MB, otherwise the trace gets too big.
2021-08-31 19:01:47 +02:00
dd if=/dev/zero of="$T/b/zero" bs=1M count=100
echo
echo "Hint: go tool trace $T/trace"