From 9be85824a61610bdb1ead4e0e7804d26d0f1fb99 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Mon, 8 Feb 2016 22:43:32 -0800 Subject: [PATCH] click: Fix detection of Waf configuration variable --- src/click/test/examples-to-run.py | 2 +- test.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/click/test/examples-to-run.py b/src/click/test/examples-to-run.py index 4acdd6c0c..3ca3cf5ba 100644 --- a/src/click/test/examples-to-run.py +++ b/src/click/test/examples-to-run.py @@ -8,7 +8,7 @@ # # See test.py for more information. cpp_examples = [ - ("nsclick-simple-lan", "ENABLE_CLICK == True", "False"), + ("nsclick-simple-lan", "NSCLICK == True", "False"), ] # A list of Python examples to run in order to ensure that they remain diff --git a/test.py b/test.py index dd4c82afa..119dc520b 100755 --- a/test.py +++ b/test.py @@ -54,7 +54,7 @@ interesting_config_items = [ "ENABLE_TESTS", "EXAMPLE_DIRECTORIES", "ENABLE_PYTHON_BINDINGS", - "ENABLE_CLICK", + "NSCLICK", "ENABLE_BRITE", "ENABLE_OPENFLOW", "APPNAME", @@ -69,7 +69,7 @@ ENABLE_REAL_TIME = False ENABLE_THREADING = False ENABLE_EXAMPLES = True ENABLE_TESTS = True -ENABLE_CLICK = False +NSCLICK = False ENABLE_BRITE = False ENABLE_OPENFLOW = False EXAMPLE_DIRECTORIES = []