summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorulfalizer <ulfalizer@gmail.com>2015-03-13 01:04:08 +0100
committerulfalizer <ulfalizer@gmail.com>2015-03-13 01:04:08 +0100
commit5cc87664ae6fe0b05b6f2d3cc98aae864f9eafb0 (patch)
tree9d475f7735d0ff7202ffee933fade87ee1d22de3 /testsuite.py
parentcad5853418f4d080e6191e92f0f5d8042d0f8ea8 (diff)
parent589d9b7fc305848df64b73eeac6bdfd76de7ce34 (diff)
Merge pull request #14 from philipc/linux-3.19
Fixes to make testsuite pass
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite.py b/testsuite.py
index be0082e..1fe0f24 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -1195,6 +1195,13 @@ def run_selftests():
verify(not sym.is_choice_symbol(),
"{0} should not be a choice symbol".format(sym_name))
+ print "Testing is_allnoconfig_y()..."
+
+ verify(not c["NOT_ALLNOCONFIG_Y"].is_allnoconfig_y(),
+ "NOT_ALLNOCONFIG_Y should not be allnoconfig_y")
+ verify(c["ALLNOCONFIG_Y"].is_allnoconfig_y(),
+ "ALLNOCONFIG_Y should be allnoconfig_y")
+
print "Testing UNAME_RELEASE value..."
verify_value("UNAME_RELEASE", os.uname()[2])
@@ -1760,6 +1767,7 @@ def test_call_all(conf):
s.is_defined()
s.is_from_environment()
s.is_modifiable()
+ s.is_allnoconfig_y()
s.unset_user_value()
# Check get_ref/def_location() sanity