prysm-pulse/fuzz/testing/BUILD.bazel
Raul Jordan 2d10bcf179
Move State Protos Into V2 Namespace (#9257)
* move state protos

* regen ssz

* edit v1 code

* fix imports

* building

* beacon chain builds

* validator and shared builds

* fuzz builds

* changes

* spectest builds

* tools build

* remove import cycle

* generate ssz

* pcli

* gaz

* kafka

* gaz
2021-07-23 08:07:40 -05:00

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/v2/state: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"],
)