mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
26 lines
646 B
Python
26 lines
646 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
||
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
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"],
|
||
|
)
|