aboutsummaryrefslogtreecommitdiff
path: root/tests/stress_tests/fsstress.collect-crashes.sh
blob: f315e2e1f0705fb9701bb3d3176ea12a2569ca32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
cd ~/go/src/github.com/rfjakob/gocryptfs/tests/stress_tests || exit 1
export TMPDIR=/mnt/ext4-ramdisk
# Check that TMPDIR is writeable
touch "$TMPDIR/$$" || exit 1
rm "$TMPDIR/$$"
LOGDIR=/tmp/$$
mkdir "$LOGDIR" || exit 1
echo "Logging to LOGDIR=$LOGDIR, TMPDIR=$TMPDIR"
for i in $(seq 1 1000) ; do
	set -x
	LOG="$LOGDIR/fsstress.log.$(date --iso).$i"
	if [[ -e $LOG ]]; then
		continue
	fi
	rm -Rf "$TMPDIR"/fsstress*
	#   100000 lines ...... ~7 MB
	#  1000000 lines ..... ~70 MB
	# 10000000 lines .... ~700 MB
	DEBUG=1 ./fsstress-loopback.bash 2>&1 | tail -1000000 > "$LOG"
done