diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-12 12:32:38 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-31 18:25:31 +0200 |
commit | 83389e22c5aa48877b9e4f903ae4ec49a442df2b (patch) | |
tree | d8c4a36182e470c5a09bd0a78f69a257a3dcff21 /tests/migration | |
parent | 6ee982c9abc42e726f9e783ba67bbb7676a9f9b4 (diff) | |
download | qemu-83389e22c5aa48877b9e4f903ae4ec49a442df2b.zip qemu-83389e22c5aa48877b9e4f903ae4ec49a442df2b.tar.gz qemu-83389e22c5aa48877b9e4f903ae4ec49a442df2b.tar.bz2 |
tests/migration/guestperf: Use Python 3 interpreter
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20200512103238.7078-7-philmd@redhat.com>
Diffstat (limited to 'tests/migration')
-rwxr-xr-x | tests/migration/guestperf-batch.py | 2 | ||||
-rwxr-xr-x | tests/migration/guestperf-plot.py | 2 | ||||
-rwxr-xr-x | tests/migration/guestperf.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/migration/guestperf-batch.py b/tests/migration/guestperf-batch.py index cb150ce..f1e9009 100755 --- a/tests/migration/guestperf-batch.py +++ b/tests/migration/guestperf-batch.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # # Migration test batch comparison invokation # diff --git a/tests/migration/guestperf-plot.py b/tests/migration/guestperf-plot.py index d70bb7a..9071510 100755 --- a/tests/migration/guestperf-plot.py +++ b/tests/migration/guestperf-plot.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # # Migration test graph plotting command # diff --git a/tests/migration/guestperf.py b/tests/migration/guestperf.py index 99b027e..ba1c4bc 100755 --- a/tests/migration/guestperf.py +++ b/tests/migration/guestperf.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # # Migration test direct invokation command # |