Commit 351aa270 authored by Philippe Mathieu-Daudé's avatar Philippe Mathieu-Daudé
Browse files

tests/qemu-iotests/check: Only check for Python 3 interpreter



All the iotests Python scripts have been converted to search for
the Python 3 interpreter. Update the ./check script accordingly.

Acked-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Acked-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200130163232.10446-13-philmd@redhat.com>
Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
parent d2cdbd54
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -846,8 +846,7 @@ do

        start=$(_wallclock)

        if [ "$(head -n 1 "$source_iotests/$seq" | sed 's/3$//')" \
            == "#!/usr/bin/env python" ]; then
        if [ "$(head -n 1 "$source_iotests/$seq")" == "#!/usr/bin/env python3" ]; then
            if $python_usable; then
                run_command="$PYTHON $seq"
            else