rclone/bin/test-repeat-vfs.sh
2020-08-06 17:26:18 +01:00

28 lines
389 B
Bash
Executable File

#!/bin/bash
# Thrash the VFS tests
set -e
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
"
testdirs="
cmd/cmount
"
for testdir in ${testdirs}; do
echo "Testing ${testdir}"
cd ${base}/${testdir}
${run} -c=100 -race -tags=cmount
done