2014-07-19 11:39:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
go install
|
|
|
|
|
|
|
|
REMOTES="
|
2014-07-24 21:50:11 +00:00
|
|
|
TestSwift:
|
|
|
|
TestS3:
|
|
|
|
TestDrive:
|
|
|
|
TestGoogleCloudStorage:
|
|
|
|
TestDropbox:
|
2014-07-19 11:39:31 +00:00
|
|
|
/tmp/z
|
|
|
|
"
|
|
|
|
|
|
|
|
function test_remote {
|
|
|
|
args=$@
|
|
|
|
rclonetest $args || {
|
|
|
|
echo "*** rclonetest $args FAILED ***"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for remote in $REMOTES; do
|
|
|
|
test_remote $remote
|
|
|
|
test_remote --subdir $remote
|
|
|
|
done
|