mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
storage: extend timeout for slow CI
1. extend timeout 2. print out stacktrace. When it fails again, we can get more confidence that the failure is caused by slow IO.
This commit is contained in:
parent
9e11da50ad
commit
0cba12d991
@ -20,6 +20,7 @@ import (
|
||||
"math"
|
||||
"os"
|
||||
"reflect"
|
||||
"runtime"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
@ -455,7 +456,11 @@ func TestTxnBlockBackendForceCommit(t *testing.T) {
|
||||
s.TxnEnd(id)
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(time.Second):
|
||||
case <-time.After(5 * time.Second): // wait 5 seconds for CI with slow IO
|
||||
// print out stack traces of all routines if there is a failure
|
||||
stackTrace := make([]byte, 8*1024)
|
||||
n := runtime.Stack(stackTrace, true)
|
||||
t.Error(string(stackTrace[:n]))
|
||||
t.Fatalf("failed to execute ForceCommit")
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user