2020-08-06 18:25:47 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# Thrash the VFS tests
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-08-20 17:01:55 +02:00
|
|
|
# Optionally set the iterations with the first parameter
|
|
|
|
iterations=${1:-100}
|
|
|
|
|
2020-08-06 18:25:47 +02:00
|
|
|
base=$(dirname $(dirname $(realpath "$0")))
|
|
|
|
echo ${base}
|
|
|
|
run=${base}/bin/test-repeat.sh
|
|
|
|
echo ${run}
|
|
|
|
|
|
|
|
testdirs="
|
|
|
|
vfs
|
|
|
|
vfs/vfscache
|
|
|
|
vfs/vfscache/writeback
|
|
|
|
vfs/vfscache/downloaders
|
|
|
|
cmd/cmount
|
|
|
|
"
|
|
|
|
|
|
|
|
for testdir in ${testdirs}; do
|
2020-08-20 17:01:55 +02:00
|
|
|
echo "Testing ${testdir} with ${iterations} iterations"
|
2020-08-06 18:25:47 +02:00
|
|
|
cd ${base}/${testdir}
|
2020-08-20 17:01:55 +02:00
|
|
|
${run} -i=${iterations} -race -tags=cmount
|
2020-08-06 18:25:47 +02:00
|
|
|
done
|