mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
9145310647
* get rid of v2 in prysm codebase * replace block2 * builds * terence comments * gazelle
26 lines
669 B
Python
26 lines
669 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/prysm/v1alpha1: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"],
|
|
)
|