summaryrefslogtreecommitdiffstats
path: root/test/Variables/EnumVariable.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Variables/EnumVariable.py')
-rw-r--r--test/Variables/EnumVariable.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Variables/EnumVariable.py b/test/Variables/EnumVariable.py
index bb85f4c..c04b396 100644
--- a/test/Variables/EnumVariable.py
+++ b/test/Variables/EnumVariable.py
@@ -83,19 +83,19 @@ test.run(arguments='debug=full guilib=KdE some=EiNs')
check(['full', 'KdE', 'eins'])
expect_stderr = """
-scons: *** Invalid value for option debug: FULL
+scons: *** Invalid value for option debug: FULL. Valid values are: ('yes', 'no', 'full')
""" + test.python_file_line(SConstruct_path, 21)
test.run(arguments='debug=FULL', stderr=expect_stderr, status=2)
expect_stderr = """
-scons: *** Invalid value for option guilib: irgendwas
+scons: *** Invalid value for option guilib: irgendwas. Valid values are: ('motif', 'gtk', 'kde')
""" + test.python_file_line(SConstruct_path, 21)
test.run(arguments='guilib=IrGeNdwas', stderr=expect_stderr, status=2)
expect_stderr = """
-scons: *** Invalid value for option some: irgendwas
+scons: *** Invalid value for option some: irgendwas. Valid values are: ('xaver', 'eins')
""" + test.python_file_line(SConstruct_path, 21)
test.run(arguments='some=IrGeNdwas', stderr=expect_stderr, status=2)