mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 10:13:52 +08:00
24 lines
364 B
Bash
24 lines
364 B
Bash
|
#!/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
|
||
|
"
|
||
|
|
||
|
for testdir in ${testdirs}; do
|
||
|
echo "Testing ${testdir}"
|
||
|
cd ${base}/${testdir}
|
||
|
${run} -c=100 -race -tags=cmount
|
||
|
done
|