mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
26 lines
674 B
Python
26 lines
674 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/testing/fuzz/testing",
|
|
visibility = [
|
|
"//testing/fuzz:__pkg__",
|
|
],
|
|
deps = [
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/util:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["beacon_fuzz_states_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//testing/require:go_default_library"],
|
|
)
|