vmtest icon indicating copy to clipboard operation
vmtest copied to clipboard

Helps run tests in virtual machines

Results 20 vmtest issues
Sort by recently updated
recently updated
newest added

Before, we were pinning dependencies down to the patch version. This prevents us from picking up bug fixes. It also (I think) caused failures like this: $ cargo install vmtest...

A small but very useful thing to do when the output in CI systems is very large is to group parts of the output in sections that can be unfolded...

Hi hi! I was giving `vmtest` a try for a kernel bug I am trying to reproduce. The specifics aren't important but the approach I am trying to follow is...

Should be a better fit of vmtest use case (tests). Claims to boot faster and consume less resources. See https://www.qemu.org/docs/master/system/i386/microvm.html I believe virtme-ng also supports this

Hey I want to use vmtest for ebpf testing and want to test my code on kernel versions below 4.6.0, so tried followed building kernels using `scripts/build_kernel.sh` as described in...

`run_in_vm()` is getting kinda hairy. It would be nice to pull it into a cleaner abstraction. Maybe with some kinda [OpenOptions](https://doc.rust-lang.org/std/fs/struct.OpenOptions.html) like builder to specify options. A proper object would...

vmtest is more or less a wrapper around qemu stuff. So it's almost completely I/O bound, making it a good candidate for async. Async is particularly appealing cuz we have...

I'd like to be able to do the following: ``` $ go test -exec vmtest ./... -vm.image /path/to/vmlinux -vm.env SOME_ENV -other-flag ``` Behind the scenes: 1. Compile the tests into...

It would be nice if it was possible to invoke vmtest like so: ``` $ vmtest --debug ``` Which would then proceed to start the [qemu GDB server](https://qemu-project.gitlab.io/qemu/system/gdb.html). (Preferably bound...