We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfb3bf commit b36c49eCopy full SHA for b36c49e
tests/init_test.go
@@ -32,6 +32,7 @@ import (
32
"testing"
33
34
"github.com/ethereum/go-ethereum/params"
35
+ "github.com/ethereum/go-ethereum/core/vm"
36
)
37
38
// Command line flags to configure the interpreters.
@@ -42,6 +43,15 @@ var (
42
43
44
func TestMain(m *testing.M) {
45
flag.Parse()
46
+
47
+ if (*testEVM != "") {
48
+ vm.InitEVMCEVM(*testEVM)
49
+ }
50
51
+ if (*testEWASM != "") {
52
+ vm.InitEVMCEwasm(*testEWASM)
53
54
55
os.Exit(m.Run())
56
}
57
0 commit comments