mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-18 21:35:24 +01:00
Merge pull request #5659 from guggero/unit-test-race-fix
multi: fix unit test for high CPU load envs
This commit is contained in:
commit
2835cebe90
@ -40,6 +40,8 @@ import (
|
||||
)
|
||||
|
||||
var (
|
||||
defaultTimeout = 30 * time.Second
|
||||
|
||||
breachOutPoints = []wire.OutPoint{
|
||||
{
|
||||
Hash: [chainhash.HashSize]byte{
|
||||
@ -1849,7 +1851,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
|
||||
select {
|
||||
case contractBreaches <- breach:
|
||||
case <-time.After(15 * time.Second):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("breach not delivered")
|
||||
}
|
||||
|
||||
@ -1859,7 +1861,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatalf("handoff failed: %v", err)
|
||||
}
|
||||
case <-time.After(time.Second * 15):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("breach arbiter didn't send ack back")
|
||||
}
|
||||
|
||||
@ -1895,7 +1897,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
|
||||
select {
|
||||
case notifier.ConfChan <- &chainntnfs.TxConfirmation{}:
|
||||
case <-time.After(15 * time.Second):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("conf not delivered")
|
||||
}
|
||||
|
||||
@ -1904,7 +1906,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
var justiceTx *wire.MsgTx
|
||||
select {
|
||||
case justiceTx = <-publTx:
|
||||
case <-time.After(5 * time.Second):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("tx was not published")
|
||||
}
|
||||
|
||||
@ -1920,6 +1922,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
|
||||
// Now we'll pretend some blocks pass without the justice tx
|
||||
// confirming.
|
||||
const pollInterval = 500 * time.Millisecond
|
||||
for i := int32(0); i <= 3; i++ {
|
||||
notifier.EpochChan <- &chainntnfs.BlockEpoch{
|
||||
Height: blockHeight + i,
|
||||
@ -1929,7 +1932,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
select {
|
||||
case <-publTx:
|
||||
t.Fatalf("tx was published")
|
||||
case <-time.After(20 * time.Millisecond):
|
||||
case <-time.After(pollInterval):
|
||||
}
|
||||
}
|
||||
|
||||
@ -1952,7 +1955,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
case tx = <-publTx:
|
||||
splits = append(splits, tx)
|
||||
|
||||
case <-time.After(5 * time.Second):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("tx not published")
|
||||
}
|
||||
|
||||
@ -1997,7 +2000,7 @@ func TestBreachDelayedJusticeConfirmation(t *testing.T) {
|
||||
)
|
||||
}
|
||||
|
||||
case <-time.After(5 * time.Second):
|
||||
case <-time.After(defaultTimeout):
|
||||
t.Fatalf("tx not published")
|
||||
}
|
||||
|
||||
|
@ -90,6 +90,11 @@ you.
|
||||
|
||||
* [The `lnwire` fuzz tests have been fixed and now run without crashing.](https://github.com/lightningnetwork/lnd/pull/5395)
|
||||
|
||||
* [A flake in the race unit
|
||||
tests](https://github.com/lightningnetwork/lnd/pull/5659) was addressed that
|
||||
lead to failed tests sometimes when the CPU of the GitHub CI runner was
|
||||
strained too much.
|
||||
|
||||
## Documentation
|
||||
|
||||
* [Outdated warning about unsupported pruning was replaced with clarification that LND **does**
|
||||
|
@ -41,7 +41,7 @@ var (
|
||||
|
||||
testRecoveryWindow uint32 = 150
|
||||
|
||||
defaultTestTimeout = 3 * time.Second
|
||||
defaultTestTimeout = 30 * time.Second
|
||||
|
||||
defaultRootKeyIDContext = macaroons.ContextWithRootKeyID(
|
||||
context.Background(), macaroons.DefaultRootKeyID,
|
||||
|
Loading…
Reference in New Issue
Block a user