Tested-by: Zhang, XiX > -----Original Message----- > From: Zhang, XiX > Sent: Wednesday, September 16, 2020 7:06 PM > To: dts@dpdk.org > Cc: Zhang, XiX > Subject: [dts][PATCH V1] tests/TestSuite_ieee1588:Modify sed command > > > Modify sed command > > > Signed-off-by: xizhan4x > --- > tests/TestSuite_ieee1588.py | 15 ++++++++++----- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/tests/TestSuite_ieee1588.py b/tests/TestSuite_ieee1588.py index > 19f17d1..8632286 100644 > --- a/tests/TestSuite_ieee1588.py > +++ b/tests/TestSuite_ieee1588.py > @@ -56,6 +56,7 @@ class TestIeee1588(TestCase): > # Change the config file to support IEEE1588 and recompile the > package. > self.dut.send_expect( > "sed -i -e 's/IEEE1588=n$/IEEE1588=y/' config/common_base", > "# ", 30) > + self.dut.set_build_options({'RTE_LIBRTE_IEEE1588': 'y'}) > self.dut.skip_setup = False > self.dut.build_install_dpdk(self.target) > > @@ -91,18 +92,21 @@ class TestIeee1588(TestCase): > port = self.tester.get_local_port(dutPorts[0]) > itf = self.tester.get_interface(port) > > - self.tester.send_expect( > - "tcpdump -i %s -e ether src %s" % (itf, mac), "tcpdump", 20) > self.send_session = self.tester.create_session('send_session') > + self.send_session.send_expect( > + "tcpdump -i %s -e ether src %s" % (itf, mac), "tcpdump", > + 20) > + > setattr(self.send_session, 'tmp_file', self.tester.tmp_file) > + setattr(self.send_session, 'tmp_file', > + self.tester.get_session_output) > pkt = Packet(pkt_type='TIMESYNC') > pkt.config_layer('ether', {'dst': mac}) > - pkt.send_pkt(self.send_session, tx_port=itf) > + pkt.send_pkt(self.tester, tx_port=itf) > time.sleep(1) > + > + out = self.send_session.get_session_output(timeout=20) > + self.send_session.send_expect("^C", "# ", 20) > self.send_session.close() > - out = self.tester.get_session_output(timeout=20) > > - self.tester.send_expect("^C", "# ", 20) > > self.verify("0x88f7" in out, "Ether type is not PTP") > > @@ -171,4 +175,5 @@ class TestIeee1588(TestCase): > # Restore the config file and recompile the package. > self.dut.send_expect( > "sed -i -e 's/IEEE1588=y$/IEEE1588=n/' config/common_base", > "# ", 30) > + self.dut.set_build_options({'RTE_LIBRTE_IEEE1588': 'n'}) > self.dut.build_install_dpdk(self.target) > -- > 1.8.3.1