mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-20 08:31:11 +00:00
2d10bcf179
* 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
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/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"],
|
|
)
|