qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

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>

authored by

Eduardo Habkost and committed by
Stefan Hajnoczi
73bdbb84 58b818d5

+1 -4
-1
tests/image-fuzzer/qcow2/__init__.py
··· 1 - from __future__ import absolute_import 2 1 from .layout import create_image
-1
tests/image-fuzzer/qcow2/layout.py
··· 16 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. 17 17 # 18 18 19 - from __future__ import absolute_import 20 19 import random 21 20 import struct 22 21 from . import fuzz
+1 -2
tests/image-fuzzer/runner.py
··· 1 - #!/usr/bin/env python 1 + #!/usr/bin/env python3 2 2 3 3 # Tool for running fuzz tests 4 4 # ··· 18 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 19 19 # 20 20 21 - from __future__ import print_function 22 21 import sys 23 22 import os 24 23 import signal