Unverified Commit 44a3b8c0 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #21026 from karalabe/disable-highmem-test

tests: skip consensus test using 1GB RAM
parents a52511e6 45157729
...@@ -37,13 +37,15 @@ func TestState(t *testing.T) { ...@@ -37,13 +37,15 @@ func TestState(t *testing.T) {
st.slow(`^stQuadraticComplexityTest/`) st.slow(`^stQuadraticComplexityTest/`)
st.slow(`^stStaticCall/static_Call50000`) st.slow(`^stStaticCall/static_Call50000`)
st.slow(`^stStaticCall/static_Return50000`) st.slow(`^stStaticCall/static_Return50000`)
st.slow(`^stStaticCall/static_Call1MB`)
st.slow(`^stSystemOperationsTest/CallRecursiveBomb`) st.slow(`^stSystemOperationsTest/CallRecursiveBomb`)
st.slow(`^stTransactionTest/Opcodes_TransactionInit`) st.slow(`^stTransactionTest/Opcodes_TransactionInit`)
// Very time consuming // Very time consuming
st.skipLoad(`^stTimeConsuming/`) st.skipLoad(`^stTimeConsuming/`)
// Uses 1GB RAM per tested fork
st.skipLoad(`^stStaticCall/static_Call1MB`)
// Broken tests: // Broken tests:
// Expected failures: // Expected failures:
//st.fails(`^stRevertTest/RevertPrecompiledTouch(_storage)?\.json/Byzantium/0`, "bug in test") //st.fails(`^stRevertTest/RevertPrecompiledTouch(_storage)?\.json/Byzantium/0`, "bug in test")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment