Move Spectests Into a Testing/ Folder (#9582)

This commit is contained in:
Raul Jordan 2021-09-14 11:02:58 -05:00 committed by GitHub
parent ac3c544e29
commit 6340e58f36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
229 changed files with 237 additions and 237 deletions

View File

@ -17,7 +17,7 @@ go_library(
"//shared/testutil:__pkg__",
"//shared/testutil/altair:__pkg__",
"//slasher:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//tools:__subpackages__",
"//validator:__subpackages__",
],

View File

@ -17,7 +17,7 @@ go_library(
visibility = [
"//beacon-chain:__subpackages__",
"//shared/testutil:__pkg__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//validator/client:__pkg__",
],
deps = [

View File

@ -20,7 +20,7 @@ go_library(
"//beacon-chain:__subpackages__",
"//fuzz:__pkg__",
"//shared/testutil:__pkg__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//validator/accounts:__pkg__",
],
deps = [

View File

@ -6,7 +6,7 @@ go_library(
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/epoch",
visibility = [
"//beacon-chain:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
],
deps = [
"//beacon-chain/core:go_default_library",

View File

@ -13,7 +13,7 @@ go_library(
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/epoch/precompute",
visibility = [
"//beacon-chain:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
],
deps = [
"//beacon-chain/core:go_default_library",

View File

@ -29,7 +29,7 @@ go_library(
"//shared/testutil:__pkg__",
"//shared/testutil/altair:__pkg__",
"//slasher:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//tools:__subpackages__",
"//validator:__subpackages__",
],

View File

@ -19,7 +19,7 @@ go_library(
"//fuzz:__pkg__",
"//shared/interop:__pkg__",
"//shared/testutil:__pkg__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//tools/benchmark-files-gen:__pkg__",
"//tools/genesis-state-gen:__pkg__",
"//tools/pcli:__pkg__",

View File

@ -6,7 +6,7 @@ go_library(
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/validators",
visibility = [
"//beacon-chain:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
],
deps = [
"//beacon-chain/core:go_default_library",

View File

@ -16,7 +16,7 @@ go_library(
"//shared/depositutil:__subpackages__",
"//shared/testutil:__pkg__",
"//slasher/rpc:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//tools/benchmark-files-gen:__pkg__",
"//tools/exploredb:__pkg__",
"//tools/pcli:__pkg__",

View File

@ -38,7 +38,7 @@ go_library(
"//shared/interop:__subpackages__",
"//shared/testutil:__pkg__",
"//slasher/rpc:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
"//tools/benchmark-files-gen:__pkg__",
"//tools/pcli:__pkg__",
],

View File

@ -21,7 +21,7 @@ go_library(
"//beacon-chain:__subpackages__",
"//proto/migration:__subpackages__",
"//shared/testutil:__pkg__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
],
deps = [
"//beacon-chain/state:go_default_library",

View File

@ -10,6 +10,6 @@ go_library(
importpath = "github.com/prysmaticlabs/prysm/shared/bls/common",
visibility = [
"//shared/bls:__subpackages__",
"//spectest:__subpackages__",
"//testing/spectest:__subpackages__",
],
)

View File

@ -11,7 +11,7 @@ go_library(
"sign_test.yaml.go",
"verify_test.yaml.go",
],
importpath = "github.com/prysmaticlabs/prysm/spectest/general/phase0/bls",
importpath = "github.com/prysmaticlabs/prysm/testing/spectest/general/phase0/bls",
visibility = ["//visibility:public"],
)
@ -36,7 +36,7 @@ go_test(
"//shared/bytesutil:go_default_library",
"//shared/testutil:go_default_library",
"//shared/testutil/require:go_default_library",
"//spectest/utils:go_default_library",
"//testing/spectest/utils:go_default_library",
"@com_github_ghodss_yaml//:go_default_library",
],
)

View File

@ -11,7 +11,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/bls/common"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
"github.com/prysmaticlabs/prysm/spectest/utils"
"github.com/prysmaticlabs/prysm/testing/spectest/utils"
)
func TestAggregate(t *testing.T) {

View File

@ -12,7 +12,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/bytesutil"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
"github.com/prysmaticlabs/prysm/spectest/utils"
"github.com/prysmaticlabs/prysm/testing/spectest/utils"
)
func TestAggregateVerify(t *testing.T) {

View File

@ -12,7 +12,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/bytesutil"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
"github.com/prysmaticlabs/prysm/spectest/utils"
"github.com/prysmaticlabs/prysm/testing/spectest/utils"
)
func TestFastAggregateVerify(t *testing.T) {

View File

@ -12,7 +12,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/bls/common"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
"github.com/prysmaticlabs/prysm/spectest/utils"
"github.com/prysmaticlabs/prysm/testing/spectest/utils"
)
func TestSign(t *testing.T) {

View File

@ -11,7 +11,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/bls/common"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
"github.com/prysmaticlabs/prysm/spectest/utils"
"github.com/prysmaticlabs/prysm/testing/spectest/utils"
)
func TestVerify(t *testing.T) {

View File

@ -21,5 +21,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/altair/epoch_processing:go_default_library"],
deps = ["//testing/spectest/shared/altair/epoch_processing:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_Eth1DataReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_InactivityUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_JustificationAndFinalization(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_ParticipationFlag(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_RandaoMixesReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_ResetRegistryUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_RewardsAndPenalties(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_SlashingsReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMainnet_Altair_EpochProcessing_Slashings(t *testing.T) {

View File

@ -9,5 +9,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/altair/finality:go_default_library"],
deps = ["//testing/spectest/shared/altair/finality:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package finality
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/finality"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/finality"
)
func TestMainnet_Altair_Finality(t *testing.T) {

View File

@ -9,5 +9,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/altair/fork:go_default_library"],
deps = ["//testing/spectest/shared/altair/fork:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package fork_helper
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/fork"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/fork"
)
func TestMainnet_Altair_UpgradeToAltair(t *testing.T) {

View File

@ -7,5 +7,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/altair/fork:go_default_library"],
deps = ["//testing/spectest/shared/altair/fork:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package fork_transition
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/fork"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/fork"
)
func TestMainnet_Altair_Transition(t *testing.T) {

View File

@ -17,5 +17,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/altair/operations:go_default_library"],
deps = ["//testing/spectest/shared/altair/operations:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_Attestation(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_AttesterSlashing(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_BlockHeader(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_Deposit(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_ProposerSlashing(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_SyncCommittee(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/operations"
)
func TestMainnet_Altair_Operations_VoluntaryExit(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/phase0/sanity:go_default_library"],
deps = ["//testing/spectest/shared/altair/sanity:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package random
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/sanity"
)
func TestMainnet_Altair_Random(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/altair/rewards:go_default_library"],
deps = ["//testing/spectest/shared/altair/rewards:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package rewards
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/rewards"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/rewards"
)
func TestMainnet_Altair_Rewards(t *testing.T) {

View File

@ -11,5 +11,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/phase0/sanity:go_default_library"],
deps = ["//testing/spectest/shared/altair/sanity:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package sanity
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/sanity"
)
func TestMainnet_Altair_Sanity_Blocks(t *testing.T) {

View File

@ -3,7 +3,7 @@ package sanity
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/sanity"
)
func TestMainnet_Altair_Sanity_Slots(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/phase0/ssz_static:go_default_library"],
deps = ["//testing/spectest/shared/altair/ssz_static:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package ssz_static
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/ssz_static"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/ssz_static"
)
func TestMainnet_Altair_SSZStatic(t *testing.T) {

View File

@ -23,6 +23,6 @@ go_test(
tags = ["spectest"],
deps = [
"//shared/params:go_default_library",
"//spectest/shared/phase0/epoch_processing:go_default_library",
"//testing/spectest/shared/phase0/epoch_processing:go_default_library",
],
)

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_Eth1DataReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_JustificationAndFinalization(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_ParticipationRecordUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_RandaoMixesReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_ResetRegistryUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_RewardsAndPenalties(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_SlashingsReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/epoch_processing"
)
func TestMainnet_Phase0_EpochProcessing_Slashings(t *testing.T) {

View File

@ -9,5 +9,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/phase0/finality:go_default_library"],
deps = ["//testing/spectest/shared/phase0/finality:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package finality
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/finality"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/finality"
)
func TestMainnet_Phase0_Finality(t *testing.T) {

View File

@ -16,5 +16,5 @@ go_test(
],
shard_count = 4,
tags = ["spectest"],
deps = ["//spectest/shared/phase0/operations:go_default_library"],
deps = ["//testing/spectest/shared/phase0/operations:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_Attestation(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_AttesterSlashing(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_BlockHeader(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_Deposit(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_ProposerSlashing(t *testing.T) {

View File

@ -3,7 +3,7 @@ package operations
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/operations"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/operations"
)
func TestMainnet_Phase0_Operations_VoluntaryExit(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/altair/sanity:go_default_library"],
deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package random
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/sanity"
)
func TestMainnet_Phase0_Random(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/phase0/rewards:go_default_library"],
deps = ["//testing/spectest/shared/phase0/rewards:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package rewards
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/rewards"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/rewards"
)
func TestMainnet_Phase0_Rewards(t *testing.T) {

View File

@ -11,5 +11,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/altair/sanity:go_default_library"],
deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package sanity
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/sanity"
)
func TestMainnet_Phase0_Sanity_Blocks(t *testing.T) {

View File

@ -3,7 +3,7 @@ package sanity
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/sanity"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/sanity"
)
func TestMainnet_Phase0_Sanity_Slots(t *testing.T) {

View File

@ -9,5 +9,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/phase0/shuffling/core/shuffle:go_default_library"],
deps = ["//testing/spectest/shared/phase0/shuffling/core/shuffle:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package shuffle
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/shuffling/core/shuffle"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/shuffling/core/shuffle"
)
func TestMainnet_Phase0_Shuffling_Core_Shuffle(t *testing.T) {

View File

@ -8,5 +8,5 @@ go_test(
"@consensus_spec_tests_mainnet//:test_data",
],
tags = ["spectest"],
deps = ["//spectest/shared/altair/ssz_static:go_default_library"],
deps = ["//testing/spectest/shared/phase0/ssz_static:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package ssz_static
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/phase0/ssz_static"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/phase0/ssz_static"
)
func TestMainnet_Phase0_SSZStatic(t *testing.T) {

View File

@ -24,5 +24,5 @@ go_test(
"minimal",
"spectest",
],
deps = ["//spectest/shared/altair/epoch_processing:go_default_library"],
deps = ["//testing/spectest/shared/altair/epoch_processing:go_default_library"],
)

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_Eth1DataReset(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_InactivityUpdates(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_JustificationAndFinalization(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_ParticipationFlag(t *testing.T) {

View File

@ -3,7 +3,7 @@ package epoch_processing
import (
"testing"
"github.com/prysmaticlabs/prysm/spectest/shared/altair/epoch_processing"
"github.com/prysmaticlabs/prysm/testing/spectest/shared/altair/epoch_processing"
)
func TestMinimal_Altair_EpochProcessing_RandaoMixesReset(t *testing.T) {

Some files were not shown because too many files have changed in this diff Show More