Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment