2023-10-18 13:01:16 +00:00
|
|
|
// Copyright 2023 The go-ethereum Authors
|
2017-04-14 08:29:00 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-02-21 09:24:07 +00:00
|
|
|
package runtime
|
|
|
|
|
2020-12-23 16:44:45 +00:00
|
|
|
import (
|
2023-10-18 13:01:16 +00:00
|
|
|
"testing"
|
2020-12-23 16:44:45 +00:00
|
|
|
)
|
|
|
|
|
2023-11-14 13:34:29 +00:00
|
|
|
func FuzzVmRuntime(f *testing.F) {
|
2023-10-18 13:01:16 +00:00
|
|
|
f.Fuzz(func(t *testing.T, code, input []byte) {
|
2023-11-14 13:34:29 +00:00
|
|
|
Execute(code, input, &Config{
|
2023-10-18 13:01:16 +00:00
|
|
|
GasLimit: 12000000,
|
|
|
|
})
|
2017-02-21 09:24:07 +00:00
|
|
|
})
|
|
|
|
}
|