mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
tests: avoid duplicate state-tests
This commit is contained in:
parent
84527f3d78
commit
d42b1f6a2c
2 changed files with 5 additions and 5 deletions
|
|
@ -49,11 +49,6 @@ func TestBlockchain(t *testing.T) {
|
||||||
// using 4.6 TGas
|
// using 4.6 TGas
|
||||||
bt.skipLoad(`.*randomStatetest94.json.*`)
|
bt.skipLoad(`.*randomStatetest94.json.*`)
|
||||||
|
|
||||||
// The tests under Pyspecs are the ones that are published as execution-spect tests.
|
|
||||||
// We run these tests separately, no need to _also_ run them as part of the
|
|
||||||
// reference tests.
|
|
||||||
bt.skipLoad(`^Pyspecs/`)
|
|
||||||
|
|
||||||
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
||||||
execBlockTest(t, bt, test)
|
execBlockTest(t, bt, test)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,11 @@ func initMatcher(st *testMatcher) {
|
||||||
// Broken tests:
|
// Broken tests:
|
||||||
// EOF is not part of cancun
|
// EOF is not part of cancun
|
||||||
st.skipLoad(`^stEOF/`)
|
st.skipLoad(`^stEOF/`)
|
||||||
|
|
||||||
|
// The tests under Pyspecs are the ones that are published as execution-spec tests.
|
||||||
|
// We run these tests separately, no need to _also_ run them as part of the
|
||||||
|
// reference tests.
|
||||||
|
st.skipLoad(`^Pyspecs/`)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestState(t *testing.T) {
|
func TestState(t *testing.T) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue