From 3e1cfead0b7bab02cafa9b05fc87c70d10517393 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 15 Mar 2019 23:56:34 +0200 Subject: [PATCH] tests: Use matching prefix for the ProxyARP IPv6 log files The "_ipv6" part of the file name was missing and this resulted in file names that conflicted with the IPv4 test cases and could overwrite logs for those. Signed-off-by: Jouni Malinen --- tests/hwsim/test_ap_hs20.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_ap_hs20.py b/tests/hwsim/test_ap_hs20.py index af33c3462..937d6fa53 100644 --- a/tests/hwsim/test_ap_hs20.py +++ b/tests/hwsim/test_ap_hs20.py @@ -4945,6 +4945,7 @@ def _test_proxyarp_open_ipv6(dev, apdev, params, ebtables=False): prefix = "proxyarp_open" if ebtables: prefix += "_ebtables" + prefix += "_ipv6" cap_br = os.path.join(params['logdir'], prefix + ".ap-br0.pcap") cap_dev0 = os.path.join(params['logdir'], prefix + ".%s.pcap" % dev[0].ifname)