mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-20 08:31:11 +00:00
d6bd619429
* Add build transitions for minimal config based tests * respect existing gotags * clean up import * Add some commentary * gaz Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: rauljordan <raul@prysmaticlabs.com>
26 lines
668 B
Python
26 lines
668 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = 1,
|
|
srcs = ["beacon_fuzz_states.go"],
|
|
data = [
|
|
"@sigp_beacon_fuzz_corpora//:current_mainnet_beaconstate",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/fuzz/testing",
|
|
visibility = [
|
|
"//fuzz:__pkg__",
|
|
],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["beacon_fuzz_states_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//shared/testutil/require:go_default_library"],
|
|
)
|