Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
4ac481b4
Commit
4ac481b4
authored
Feb 21, 2017
by
Jeffrey Wilcke
Committed by
GitHub
Feb 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/vm, crypto: support for go-fuzz (#3672)
parent
94334c23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
fuzz.go
core/vm/runtime/fuzz.go
+20
-0
No files found.
core/vm/runtime/fuzz.go
0 → 100644
View file @
4ac481b4
// +build gofuzz
package
runtime
// Fuzz is the basic entry point for the go-fuzz tool
//
// This returns 1 for valid parsable/runable code, 0
// for invalid opcode.
func
Fuzz
(
input
[]
byte
)
int
{
_
,
_
,
err
:=
Execute
(
input
,
input
,
&
Config
{
GasLimit
:
3000000
,
})
// invalid opcode
if
err
!=
nil
&&
len
(
err
.
Error
())
>
6
&&
string
(
err
.
Error
()[
:
7
])
==
"invalid"
{
return
0
}
return
1
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment