ICMP echo: example test were failing due to regex not matching TTL

This commit is contained in:
Marius Vikhammer 2020-05-27 11:16:18 +08:00
parent b734893124
commit 26d59f0f4c

View file

@ -16,7 +16,7 @@ def test_examples_icmp_echo(env, extra_data):
ip = dut.expect(re.compile(r'64 bytes from ({}) icmp_seq=1 ttl=\d+ time=\d+ ms'.format(ip_re)))[0]
# expect at least one more (there could be lost packets)
dut.expect(re.compile(r'64 bytes from {} icmp_seq=[2-5] ttl=49 time='.format(ip)))
dut.expect(re.compile(r'64 bytes from {} icmp_seq=[2-5] ttl=\d+ time='.format(ip)))
dut.expect(re.compile(r'5 packets transmitted, [2-5] received, \d{1,3}% packet loss'))
dut.write('')