From: Jouni Malinen Date: Fri, 15 Mar 2019 21:56:34 +0000 (+0200) Subject: tests: Use matching prefix for the ProxyARP IPv6 log files X-Git-Tag: hostap_2_8~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e1cfead0b7bab02cafa9b05fc87c70d10517393;p=thirdparty%2Fhostap.git 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 --- 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)