mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 05:28:09 +08:00
bisync: avoid starting tests we don't have time to finish
To prevent all-or-nothing retries, for tests that take longer (in total) than the -timeout but less than the -timeout * -maxtries https://github.com/rclone/rclone/pull/7743#issuecomment-2057250848
This commit is contained in:
parent
58e09e1cd4
commit
8977655869
|
@ -335,13 +335,23 @@ func testBisync(t *testing.T, path1, path2 string) {
|
|||
}
|
||||
}
|
||||
require.False(t, b.stopAt > 0 && len(testList) > 1, "-stop-at is meaningful only for a single test")
|
||||
deadline, hasDeadline := t.Deadline()
|
||||
var maxRunDuration time.Duration
|
||||
|
||||
for _, testCase := range testList {
|
||||
testCase = strings.ReplaceAll(testCase, "-", "_")
|
||||
testCase = strings.TrimPrefix(testCase, "test_")
|
||||
t.Run(testCase, func(childTest *testing.T) {
|
||||
startTime := time.Now()
|
||||
remaining := time.Until(deadline)
|
||||
if hasDeadline && (remaining < maxRunDuration || remaining < 10*time.Second) { // avoid starting tests we don't have time to finish
|
||||
childTest.Fatalf("test %v timed out - not enough time to start test (%v remaining, need %v for test)", testCase, remaining, maxRunDuration)
|
||||
}
|
||||
bCopy := *b
|
||||
bCopy.runTestCase(ctx, childTest, testCase)
|
||||
if time.Since(startTime) > maxRunDuration {
|
||||
maxRunDuration = time.Since(startTime)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user