diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2018-09-29 04:23:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-29 04:23:47 +0800 |
commit | 79ca6c7a657f5f6660fb136707edb07951bb3309 (patch) | |
tree | bfea93213f5cc1ddba7e00534698ae9bda53664d /tests/state_test.go | |
parent | 4d8c7248bda39e43b7d58ba894c26c4562a13c3f (diff) | |
download | dexon-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.gz dexon-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.zst dexon-79ca6c7a657f5f6660fb136707edb07951bb3309.zip |
tests: update slow test lists, skip on windows/386 (#17758)
Diffstat (limited to 'tests/state_test.go')
-rw-r--r-- | tests/state_test.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index 91c9a9f44..c52e9abb8 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -30,7 +30,15 @@ func TestState(t *testing.T) { st := new(testMatcher) // Long tests: - st.skipShortMode(`^stQuadraticComplexityTest/`) + st.slow(`^stAttackTest/ContractCreationSpam`) + st.slow(`^stBadOpcode/badOpcodes`) + st.slow(`^stPreCompiledContracts/modexp`) + st.slow(`^stQuadraticComplexityTest/`) + st.slow(`^stStaticCall/static_Call50000`) + st.slow(`^stStaticCall/static_Return50000`) + st.slow(`^stStaticCall/static_Call1MB`) + st.slow(`^stSystemOperationsTest/CallRecursiveBomb`) + st.slow(`^stTransactionTest/Opcodes_TransactionInit`) // Broken tests: st.skipLoad(`^stTransactionTest/OverflowGasRequire\.json`) // gasLimit > 256 bits st.skipLoad(`^stTransactionTest/zeroSigTransa[^/]*\.json`) // EIP-86 is not supported yet |