Merge pull request #2937 from cfromknecht/moar-darwin-woes
lnd_test: bump timeout for darwin builds
This commit is contained in:
commit
c0141a7bc1
@ -9081,16 +9081,15 @@ func testBidirectionalAsyncPayments(net *lntest.NetworkHarness, t *harnessTest)
|
||||
|
||||
// Wait for Alice and Bob receive their payments, and throw and error
|
||||
// if something goes wrong.
|
||||
maxTime := 60 * time.Second
|
||||
for i := 0; i < 2; i++ {
|
||||
select {
|
||||
case err := <-errChan:
|
||||
if err != nil {
|
||||
t.Fatalf(err.Error())
|
||||
}
|
||||
case <-time.After(maxTime):
|
||||
case <-time.After(lntest.AsyncBenchmarkTimeout):
|
||||
t.Fatalf("waiting for payments to finish too long "+
|
||||
"(%v)", maxTime)
|
||||
"(%v)", lntest.AsyncBenchmarkTimeout)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ endif
|
||||
ifneq ($(timeout),)
|
||||
TEST_FLAGS += -test.timeout=$(timeout)
|
||||
else
|
||||
TEST_FLAGS += -test.timeout=20m
|
||||
TEST_FLAGS += -test.timeout=30m
|
||||
endif
|
||||
|
||||
# UNIT_TARGTED is undefined iff a specific package and/or unit test case is
|
||||
|
Loading…
Reference in New Issue
Block a user