From aa0eae52ccc7b4cefdfb0dbbefa59905c1808321 Mon Sep 17 00:00:00 2001 From: Stefano Avallone Date: Tue, 18 Oct 2022 18:06:53 +0200 Subject: [PATCH] wifi: Do not write PCAP files for the wifi-mlo test --- src/wifi/test/wifi-mlo-test.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wifi/test/wifi-mlo-test.cc b/src/wifi/test/wifi-mlo-test.cc index b2a87db90..23f892819 100644 --- a/src/wifi/test/wifi-mlo-test.cc +++ b/src/wifi/test/wifi-mlo-test.cc @@ -422,8 +422,9 @@ MultiLinkSetupTest::DoRun() NetDeviceContainer apDevices = wifi.Install(apPhyHelper, mac, wifiApNode); - apPhyHelper.EnablePcap("wifi-mlo_AP", apDevices); - staPhyHelper.EnablePcap("wifi-mlo_STA", staDevices); + // Uncomment the lines below to write PCAP files + // apPhyHelper.EnablePcap("wifi-mlo_AP", apDevices); + // staPhyHelper.EnablePcap("wifi-mlo_STA", staDevices); // Assign fixed streams to random variables in use streamNumber += wifi.AssignStreams(apDevices, streamNumber);