diff options
| author | Radoslav Gerganov <rgerganov@vmware.com> | 2020-09-25 02:04:09 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-10-10 11:58:52 +0200 |
| commit | 4a77ae0bdc5cd75ebe88ce7c896aae6bbf457a29 (patch) | |
| tree | f6e97682c59e708acc25fa4f8e9f66602b2b8037 /vm/vm.go | |
| parent | b74c49a6af84e6ab50018024e8862263b1e0bd6d (diff) | |
vm: implement the VM interface for VMware Workstation
Use the "vmrun" utility to manage Workstation VMs. The syzkaller manager
creates temporary VMs (linked clones) from a base image, gets their IP
address and uses ssh to deploy and run programs (similar to the isolated
mode).
Diffstat (limited to 'vm/vm.go')
| -rw-r--r-- | vm/vm.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ import ( _ "github.com/google/syzkaller/vm/odroid" _ "github.com/google/syzkaller/vm/qemu" _ "github.com/google/syzkaller/vm/vmm" + _ "github.com/google/syzkaller/vm/vmware" ) type Pool struct { |
