mirror of
https://github.com/rclone/rclone.git
synced 2025-12-11 22:14:05 +01:00
fstest/test_all: fix directories that tests are run in
- Don't build a binary for backend tests - Run tests in their relevant directories
This commit is contained in:
@@ -109,8 +109,10 @@ func main() {
|
||||
for _, run := range runs {
|
||||
if _, found := done[run.Path]; !found {
|
||||
done[run.Path] = struct{}{}
|
||||
run.MakeTestBinary()
|
||||
defer run.RemoveTestBinary()
|
||||
if !run.NoBinary {
|
||||
run.MakeTestBinary()
|
||||
defer run.RemoveTestBinary()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user