diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-01-30 17:32:23 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-07 15:12:48 +0100 |
commit | 903cb1bf398666014180d00711e2c1a9ffdadd5a (patch) | |
tree | 0b6844263d82b0ad68a749ea0d2d048f9f4e920d /tests/qemu-iotests/096 | |
parent | 15b015690b62c7c463fa6f5cdb2bc669749eefc3 (diff) | |
download | qemu-903cb1bf398666014180d00711e2c1a9ffdadd5a.zip qemu-903cb1bf398666014180d00711e2c1a9ffdadd5a.tar.gz qemu-903cb1bf398666014180d00711e2c1a9ffdadd5a.tar.bz2 |
tests/qemu-iotests: Explicit usage of Python 3 (scripts with __main__)
Use the program search path to find the Python 3 interpreter.
Patch created mechanically by running:
$ sed -i "s,^#\!/usr/bin/\(env\ \)\?python$,#\!/usr/bin/env python3," \
$(git grep -l 'if __name__.*__main__')
Reported-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200130163232.10446-4-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/096')
-rwxr-xr-x | tests/qemu-iotests/096 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/096 b/tests/qemu-iotests/096 index ab9cb47..5915f92 100755 --- a/tests/qemu-iotests/096 +++ b/tests/qemu-iotests/096 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Test that snapshots move the throttling configuration to the active # layer |