diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2019-10-16 16:24:29 -0300 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2019-11-05 16:35:06 +0100 |
commit | 73bdbb84ec710c53ca8318a2bff8640b6d7e31f2 (patch) | |
tree | 961b7e075425898da8ee3c77e921e22f540a98d6 /tests | |
parent | 58b818d5bdcb89e89e60b7b1f68d808882186ccc (diff) | |
download | qemu-73bdbb84ec710c53ca8318a2bff8640b6d7e31f2.zip qemu-73bdbb84ec710c53ca8318a2bff8640b6d7e31f2.tar.gz qemu-73bdbb84ec710c53ca8318a2bff8640b6d7e31f2.tar.bz2 |
image-fuzzer: Run using python3
image-fuzzer is now supposed to be ready to run using Python 3.
Remove the __future__ imports and change the interpreter line to
"#!/usr/bin/env python3".
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20191016192430.25098-10-ehabkost@redhat.com
Message-Id: <20191016192430.25098-10-ehabkost@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/image-fuzzer/qcow2/__init__.py | 1 | ||||
-rw-r--r-- | tests/image-fuzzer/qcow2/layout.py | 1 | ||||
-rwxr-xr-x | tests/image-fuzzer/runner.py | 3 |
3 files changed, 1 insertions, 4 deletions
diff --git a/tests/image-fuzzer/qcow2/__init__.py b/tests/image-fuzzer/qcow2/__init__.py index 09ef598..ed3af5d 100644 --- a/tests/image-fuzzer/qcow2/__init__.py +++ b/tests/image-fuzzer/qcow2/__init__.py @@ -1,2 +1 @@ -from __future__ import absolute_import from .layout import create_image diff --git a/tests/image-fuzzer/qcow2/layout.py b/tests/image-fuzzer/qcow2/layout.py index 01bff4d..57ebe86 100644 --- a/tests/image-fuzzer/qcow2/layout.py +++ b/tests/image-fuzzer/qcow2/layout.py @@ -16,7 +16,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -from __future__ import absolute_import import random import struct from . import fuzz diff --git a/tests/image-fuzzer/runner.py b/tests/image-fuzzer/runner.py index 94cab5b..0793234 100755 --- a/tests/image-fuzzer/runner.py +++ b/tests/image-fuzzer/runner.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Tool for running fuzz tests # @@ -18,7 +18,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -from __future__ import print_function import sys import os import signal |