2022-11-30 20:08:04 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_test")
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"attestation_test.go",
|
|
|
|
"attester_slashing_test.go",
|
|
|
|
"block_header_test.go",
|
2023-07-24 14:13:02 +00:00
|
|
|
"bls_to_execution_change_test.go",
|
2022-11-30 20:08:04 +00:00
|
|
|
"deposit_test.go",
|
2023-08-02 08:16:46 +00:00
|
|
|
"execution_payload_test.go",
|
2022-11-30 20:08:04 +00:00
|
|
|
"proposer_slashing_test.go",
|
|
|
|
"sync_committee_test.go",
|
|
|
|
"voluntary_exit_test.go",
|
2023-07-24 14:13:02 +00:00
|
|
|
"withdrawals_test.go",
|
2022-11-30 20:08:04 +00:00
|
|
|
],
|
|
|
|
data = [
|
|
|
|
"@consensus_spec_tests_mainnet//:test_data",
|
|
|
|
],
|
|
|
|
shard_count = 4,
|
|
|
|
tags = ["spectest"],
|
|
|
|
deps = ["//testing/spectest/shared/capella/operations:go_default_library"],
|
|
|
|
)
|