Skip to content

Commit 10b68ea

Browse files
committed
test: skip full tests
1 parent d49c8f8 commit 10b68ea

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

std/evmprecompiles/01-ecrecover_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,6 @@ func TestECRecoverCircuitShort(t *testing.T) {
9191

9292
func TestECRecoverCircuitFull(t *testing.T) {
9393
t.Skip("skipping very long test")
94-
if testing.Short() {
95-
t.Skip("skipping full ECRecover in short mode")
96-
return
97-
}
9894
assert := test.NewAssert(t)
9995
circuit, witness := testRoutineECRecover(t)
10096
assert.ProverSucceeded(circuit, witness,

std/evmprecompiles/bn_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ func TestECMulCircuitShort(t *testing.T) {
123123
}
124124

125125
func TestECMulCircuitFull(t *testing.T) {
126+
t.Skip("skipping very long test")
126127
assert := test.NewAssert(t)
127128
circuit, witness := testRoutineECMul(t)
128129
assert.ProverSucceeded(circuit, witness,

0 commit comments

Comments
 (0)