mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
30 lines
409 B
Bash
Executable File
30 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
|
|
go install
|
|
|
|
REMOTES="
|
|
TestSwift:
|
|
TestS3:
|
|
TestDrive:
|
|
TestGoogleCloudStorage:
|
|
TestDropbox:
|
|
"
|
|
|
|
function test_remote {
|
|
args=$@
|
|
echo "@go test $args"
|
|
go test $args || {
|
|
echo "*** test $args FAILED ***"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
test_remote
|
|
test_remote --subdir
|
|
for remote in $REMOTES; do
|
|
test_remote --remote $remote
|
|
test_remote --remote $remote --subdir
|
|
done
|
|
|
|
echo "All OK"
|