Message ID | 20250120164316.31473-10-alexandru.elisei@arm.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | arm/arm64: Add kvmtool to the runner script | expand |
On Mon, Jan 20, 2025 at 04:43:07PM +0000, Alexandru Elisei wrote: > kvmtool, unlike qemu, cannot emulate a different architecture than the > host's, and as a result the only $accel parameter it can support is 'kvm'. > > Signed-off-by: Alexandru Elisei <alexandru.elisei@arm.com> > --- > scripts/runtime.bash | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/scripts/runtime.bash b/scripts/runtime.bash > index ee8a188b22ce..55d58eef9c7c 100644 > --- a/scripts/runtime.bash > +++ b/scripts/runtime.bash > @@ -153,6 +153,11 @@ function run() > accel="$ACCEL" > fi > > + if [[ "$TARGET" = kvmtool ]] && [[ -n "$accel" ]] && [[ "$accel" != "kvm" ]]; then > + print_result "SKIP" $testname "" "kvmtool does not support $accel" > + return 2 > + fi > + > # check a file for a particular value before running a test > # the check line can contain multiple files to check separated by a space > # but each check parameter needs to be of the form <path>=<value> > -- > 2.47.1 Reviewed-by: Andrew Jones <andrew.jones@linux.dev>
diff --git a/scripts/runtime.bash b/scripts/runtime.bash index ee8a188b22ce..55d58eef9c7c 100644 --- a/scripts/runtime.bash +++ b/scripts/runtime.bash @@ -153,6 +153,11 @@ function run() accel="$ACCEL" fi + if [[ "$TARGET" = kvmtool ]] && [[ -n "$accel" ]] && [[ "$accel" != "kvm" ]]; then + print_result "SKIP" $testname "" "kvmtool does not support $accel" + return 2 + fi + # check a file for a particular value before running a test # the check line can contain multiple files to check separated by a space # but each check parameter needs to be of the form <path>=<value>
kvmtool, unlike qemu, cannot emulate a different architecture than the host's, and as a result the only $accel parameter it can support is 'kvm'. Signed-off-by: Alexandru Elisei <alexandru.elisei@arm.com> --- scripts/runtime.bash | 5 +++++ 1 file changed, 5 insertions(+)