aboutsummaryrefslogtreecommitdiff
path: root/optinterpreter.py
diff options
context:
space:
mode:
authorAfief Halumi <afief.h@gmail.com>2015-05-02 23:58:52 +0300
committerAfief Halumi <afief.h@gmail.com>2015-05-03 21:21:12 +0300
commitcca29a3383e2346364756de09ea3e579bdc48506 (patch)
treea1b307f9337435cb843439a4f912c003b38f3182 /optinterpreter.py
parentc78f8c994588c37c65413ef69e1f0e210bff20a4 (diff)
downloadmeson-cca29a3383e2346364756de09ea3e579bdc48506.zip
meson-cca29a3383e2346364756de09ea3e579bdc48506.tar.gz
meson-cca29a3383e2346364756de09ea3e579bdc48506.tar.bz2
Better error messages for user options
Diffstat (limited to 'optinterpreter.py')
-rw-r--r--optinterpreter.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/optinterpreter.py b/optinterpreter.py
index df5b111..18a84ad 100644
--- a/optinterpreter.py
+++ b/optinterpreter.py
@@ -51,7 +51,7 @@ class UserStringOption(UserOption):
def set_value(self, newvalue):
if not isinstance(newvalue, str):
- raise OptionException('Value of string option is not a string.')
+ raise OptionException('Value "%s" for string option "%s" is not a string.' % (str(newvalue), self.name))
self.value = newvalue
class UserBooleanOption(UserOption):
@@ -61,7 +61,7 @@ class UserBooleanOption(UserOption):
def set_value(self, newvalue):
if not isinstance(newvalue, bool):
- raise OptionException('Value of boolean option is not boolean.')
+ raise OptionException('Value "%s" for boolean option "%s" is not a boolean.' % (valuestring, self.name))
self.value = newvalue
def parse_string(self, valuestring):
@@ -69,7 +69,7 @@ class UserBooleanOption(UserOption):
return False
if valuestring == 'true':
return True
- raise OptionException('Value %s is not a boolean.' % valuestring)
+ raise OptionException('Value "%s" for boolean option "%s" is not a boolean.' % (valuestring, self.name))
class UserComboOption(UserOption):
def __init__(self, kwargs):
@@ -86,7 +86,8 @@ class UserComboOption(UserOption):
def set_value(self, newvalue):
if newvalue not in self.choices:
- raise OptionException('Combo value must be one of the choices.')
+ optionsstring = ', '.join(['"%s"' % (item,) for item in self.choices])
+ raise OptionException('Value "%s" for combo option "%s" is not one of the choices. Possible choices are: %s.' % (newvalue, self.name, optionsstring))
self.value = newvalue
option_types = {'string' : UserStringOption,
@@ -175,6 +176,7 @@ class OptionInterpreter:
if self.subproject != '':
opt_name = self.subproject + ':' + opt_name
opt = option_types[opt_type](kwargs)
+ opt.name = opt_name
if opt.description == '':
opt.description = opt_name
if opt_name in self.cmd_line_options: