mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
22e2278812
* Add heap file to e2e output * Add comment * Change to curl * Gaz * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Run heap at start and end * Reorder defers * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Fix * Fix * Change to logpath * Attempt * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Fix heap file * Fix * Add more beaocn nodes * Final fixes * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Fix slasher * Fixes * Fix * Fix comment * Merge branch 'master' into add-heap-e2e * Merge refs/heads/master into add-heap-e2e * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Fix comment * Merge branch 'master' into add-heap-e2e * Merge refs/heads/master into add-heap-e2e * Merge branch 'master' of github.com:prysmaticlabs/prysm into add-heap-e2e * Fix * Change memusage to 2gb * Merge refs/heads/master into add-heap-e2e * Update endtoend/evaluators/metrics.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
39 lines
920 B
Go
39 lines
920 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ev "github.com/prysmaticlabs/prysm/endtoend/evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
func TestEndToEnd_Slashing_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseE2EConfig()
|
|
if err := e2eParams.Init(e2eParams.StandardBeaconCount); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: 4,
|
|
TestSync: false,
|
|
TestSlasher: true,
|
|
TestDeposits: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsSlashed,
|
|
ev.SlashedValidatorsLoseBalance,
|
|
ev.InjectDoubleVote,
|
|
ev.ProposeDoubleBlock,
|
|
},
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|