]> Git Repo - qemu.git/commitdiff
tests/qemu-iotests/check: Only check for Python 3 interpreter
authorPhilippe Mathieu-Daudé <[email protected]>
Thu, 30 Jan 2020 16:32:32 +0000 (17:32 +0100)
committerPhilippe Mathieu-Daudé <[email protected]>
Fri, 7 Feb 2020 14:15:16 +0000 (15:15 +0100)
All the iotests Python scripts have been converted to search for
the Python 3 interpreter. Update the ./check script accordingly.

Acked-by: Stefan Hajnoczi <[email protected]>
Acked-by: Paolo Bonzini <[email protected]>
Message-Id: <20200130163232[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
tests/qemu-iotests/check

index 1789ada52efc4f5772971484697f5bedc24e7632..f7a2d3d6c3b35fd29eee2d50bb82e61ef1c213c9 100755 (executable)
@@ -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
This page took 0.028755 seconds and 4 git commands to generate.