mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 13:20:34 +00:00
pkg/scource: rename compiled binary to syz-executor
We call the binary syz-executor because it sometimes shows in bug titles, and we don't want 2 different bugs for when a crash is triggered during fuzzing and during repro.
This commit is contained in:
parent
fd5157bebf
commit
37e76fe20b
@ -19,7 +19,9 @@ import (
|
||||
// Build builds a C/C++ program from source src and returns name of the resulting binary.
|
||||
// lang can be "c" or "c++".
|
||||
func Build(target *prog.Target, lang, src string) (string, error) {
|
||||
bin, err := ioutil.TempFile("", "syzkaller")
|
||||
// We call the binary syz-executor because it sometimes shows in bug titles,
|
||||
// and we don't want 2 different bugs for when a crash is triggered during fuzzing and during repro.
|
||||
bin, err := ioutil.TempFile("", "syz-executor")
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to create temp file: %v", err)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user