This fixes the test once more, so that we correctly skip for example access-reduced-maxphyaddr on AMD processors. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> --- scripts/runtime.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runtime.bash b/scripts/runtime.bash index 3121c1f..f070e14 100644 --- a/scripts/runtime.bash +++ b/scripts/runtime.bash @@ -118,7 +118,7 @@ function run() for check_param in "${check[@]}"; do path=${check_param%%=*} value=${check_param#*=} - if [ -f "$path" ] && [ "$(cat $path)" != "$value" ]; then + if ! [ -f "$path" ] || [ "$(cat $path)" != "$value" ]; then print_result "SKIP" $testname "" "$path not equal to $value" return 2 fi -- 2.26.2