From 3f05c198e50d033da78fd70ba4c2d03e92fe2ff6 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Mon, 21 Mar 2011 18:53:10 +0000 Subject: [PATCH] ./waf --apiscan=all: don't scan modules ending in -test --- bindings/python/wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/python/wscript b/bindings/python/wscript index a4d220044..f4b70cec7 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -669,6 +669,8 @@ def build(bld): continue if mod.path.is_child_of(test_module_path): continue + if mod.name.endswith('-test'): + continue scan_modules.append(mod.name.split('ns3-')[1]) else: scan_modules = Options.options.apiscan.split(',')