On 2018-09-28 23:30, William Tambe wrote: > I am getting familiar with kvm-unit-tests with the end goal of adding > new svm tests. > > When running: > sudo ./x86-run x86/svm.flat -cpu host,+svm > > is svm.flat running baremetal or within a VM ? Hi, just have a look at the run script x86/run (x86-run is a symlink to that file): At the end of the shell script, you can see that the *.flat file is run via QEMU, i.e. it runs within a VM. Thomas