aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/instance/instance.go
Commit message (Collapse)AuthorAgeFilesLines
* tools/create-gce-image.sh: support both nbd and loopDmitry Vyukov2018-05-171-6/+7
| | | | | Pass target OS/arch and VM type to kernel.CreateImage. Use nbd for gce and loop for qemu VM type.
* pkg/instance: relax syzkaller path checkDmitry Vyukov2018-05-141-14/+13
| | | | | | Only check that syzkaller path is in GOPATH if we are going to build it. syz-ci image testing does not have syzkaller path in GOPATH, but it also does not build syzkaller.
* pkg/instance: add package for testing of images/patches/bisectionDmitry Vyukov2018-05-141-0/+337
Move helper image/patch testing code from syz-ci/testing.go to a separate package so that it can be reused during bisection. Update #501