diff options
| author | Matthew Dempsky <mdempsky@google.com> | 2019-08-19 18:23:15 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-08-27 14:39:18 -0700 |
| commit | fd37b39ea8db38458059092f5f94b582392e8922 (patch) | |
| tree | e72046a32eb190e7d069bd38c4d132a72d6fa05b /vm | |
| parent | d21c5d9de0cd2f3124a8218f70c46ab97863a7a2 (diff) | |
all: convert Fuchsia to use "host fuzzing" mode
Go support is not a priority for Fuchsia at the moment, so it's
preferable to use host fuzzing mode for Fuchsia like currently done
for Akaros.
This commit basically looks for all the places where there was special
logic for OS=="akaros" and extends the same logic for OS=="fuchsia".
Diffstat (limited to 'vm')
| -rw-r--r-- | vm/qemu/qemu.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 80a2b822b..babf48f4d 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -164,6 +164,7 @@ var archConfigs = map[string]*archConfig{ "kernel.serial=legacy", "kernel.halt-on-panic=true", }, + HostFuzzer: true, }, "akaros/amd64": { Qemu: "qemu-system-x86_64", |
