On 13/02/20 15:33, Andrew Jones wrote: > Users may need to temporarily provide additional VMM parameters. > The VMM_PARAMS environment variable provides a way to do that. > We take care to make sure when executing ./run_tests.sh that > the VMM_PARAMS parameters come last, allowing unittests.cfg > parameters to be overridden. However, when running a command > line like `$ARCH/run $TEST $PARAMS` we want $PARAMS to override > $VMM_PARAMS, so we ensure that too. > > Additional QEMU parameters can still be provided by appending > them to the $QEMU environment variable when it provides the > path to QEMU, but as those parameters will then be the first > in the command line they cannot override anything, and may > themselves be overridden. What about looking for "--" and passing to QEMU all parameters after it? Paolo