mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
5d93ee1843
* use atomic bool in tests as well * gaz * wrapped up tests * fix test * shadowing fix Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
16 lines
385 B
Python
16 lines
385 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",
|
|
srcs = ["abool.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/abool",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["abool_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|