X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fframework.py;h=970c42de809cbda63ac18a52cb3af34b0b016bed;hb=d6f221789d58374db4ea5368dde5e83f72e842c0;hp=82d1c35fd7c66aedd3500c97c34fb9325b1086b3;hpb=d9ed3f2d8aeffbecfabc581b64a62d8ff59c7cd0;p=vpp.git diff --git a/test/framework.py b/test/framework.py index 82d1c35fd7c..970c42de809 100644 --- a/test/framework.py +++ b/test/framework.py @@ -7,6 +7,7 @@ import sys import os import select import signal +import subprocess import unittest import tempfile import time @@ -40,19 +41,6 @@ from scapy.layers.inet import IPerror, TCPerror, UDPerror, ICMPerror from scapy.layers.inet6 import ICMPv6DestUnreach, ICMPv6EchoRequest from scapy.layers.inet6 import ICMPv6EchoReply -if os.name == 'posix' and sys.version_info[0] < 3: - # using subprocess32 is recommended by python official documentation - # @ https://docs.python.org/2/library/subprocess.html - import subprocess32 as subprocess -else: - import subprocess - -# Python2/3 compatible -try: - input = raw_input -except NameError: - pass - logger = logging.getLogger(__name__) # Set up an empty logger for the testcase that can be overridden as necessary