From 6241d3aa5f04dbd4faf1791c25966a502c949ea2 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Mon, 29 May 2023 23:54:11 -0300 Subject: [PATCH] test: update test-ns3.py to handle changes in python examples enablement They are only enabled when both --enable-examples and --enable-python-bindings are passed. --- utils/tests/test-ns3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/tests/test-ns3.py b/utils/tests/test-ns3.py index 1349caa96..59bf86667 100755 --- a/utils/tests/test-ns3.py +++ b/utils/tests/test-ns3.py @@ -2337,7 +2337,7 @@ class NS3BuildBaseTestCase(NS3BaseTestCase): # First enable examples and static build return_code, stdout, stderr = run_ns3( - "configure -G \"{generator}\" --enable-python-bindings") + "configure -G \"{generator}\" --enable-examples --enable-python-bindings") # If configuration passes, we are half way done self.assertEqual(return_code, 0)