MM-57532: Improve timeouts for some tests (#26642)
- Bump timeouts for some cases - Improve sleep with require/assert.EventuallyT for better performance and reliability. https://mattermost.atlassian.net/browse/MM-57532 ```release-note NONE ```
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
bc6182229b
Коммит
dc3e5b9269
@@ -53,8 +53,8 @@ func lock(t *testing.T, m *Mutex) {
|
||||
}()
|
||||
|
||||
select {
|
||||
case <-time.After(1 * time.Second):
|
||||
require.Fail(t, "failed to lock mutex within 1 second")
|
||||
case <-time.After(2 * time.Second):
|
||||
require.Fail(t, "failed to lock mutex within 2 seconds")
|
||||
case <-done:
|
||||
}
|
||||
}
|
||||
@@ -75,8 +75,8 @@ func unlock(t *testing.T, m *Mutex, panics bool) {
|
||||
}()
|
||||
|
||||
select {
|
||||
case <-time.After(1 * time.Second):
|
||||
require.Fail(t, "failed to unlock mutex within 1 second")
|
||||
case <-time.After(2 * time.Second):
|
||||
require.Fail(t, "failed to unlock mutex within 2 seconds")
|
||||
case <-done:
|
||||
}
|
||||
}
|
||||
@@ -122,7 +122,7 @@ func TestMutex(t *testing.T) {
|
||||
}()
|
||||
|
||||
select {
|
||||
case <-time.After(1 * time.Second):
|
||||
case <-time.After(2 * time.Second):
|
||||
case <-done:
|
||||
require.Fail(t, "second goroutine should not have locked")
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user