From: Philippe Mathieu-Daudé Date: Thu, 30 Jan 2020 16:32:22 +0000 (+0100) Subject: tests/qemu-iotests/check: Allow use of python3 interpreter X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=15b015690b62c7c463fa6f5cdb2bc669749eefc3;p=qemu.git tests/qemu-iotests/check: Allow use of python3 interpreter As we want to enforce a unique and explicit Python 3 interpreter, we need let this script handle 'python3' too. Suggested-by: Kevin Wolf Acked-by: Paolo Bonzini Message-Id: <20200130163232.10446-3-philmd@redhat.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check index fff5fa956a..1789ada52e 100755 --- a/tests/qemu-iotests/check +++ b/tests/qemu-iotests/check @@ -846,7 +846,8 @@ do start=$(_wallclock) - if [ "$(head -n 1 "$source_iotests/$seq")" == "#!/usr/bin/env python" ]; then + if [ "$(head -n 1 "$source_iotests/$seq" | sed 's/3$//')" \ + == "#!/usr/bin/env python" ]; then if $python_usable; then run_command="$PYTHON $seq" else