mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
eth/catalyst: skip flaky test
This commit is contained in:
parent
7fd1563c81
commit
231a2a5794
1 changed files with 4 additions and 0 deletions
|
|
@ -144,6 +144,10 @@ func TestSimulatedBeaconSendWithdrawals(t *testing.T) {
|
||||||
// Tests that zero-period dev mode can handle a lot of simultaneous
|
// Tests that zero-period dev mode can handle a lot of simultaneous
|
||||||
// transactions/withdrawals
|
// transactions/withdrawals
|
||||||
func TestOnDemandSpam(t *testing.T) {
|
func TestOnDemandSpam(t *testing.T) {
|
||||||
|
// This test is flaky, due to various causes, and the root cause is synchronicity.
|
||||||
|
// We have optimistic timeouts here and there in the simulated becaon and the worker.
|
||||||
|
// This test typically fails on 32-bit windows appveyor.
|
||||||
|
t.Skip("flaky test")
|
||||||
var (
|
var (
|
||||||
withdrawals []types.Withdrawal
|
withdrawals []types.Withdrawal
|
||||||
txCount = 20000
|
txCount = 20000
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue