summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYeoh Ee Peng <ee.peng.yeoh@intel.com>2019-04-04 16:48:35 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-04 22:57:32 +0100
commit8262db1c27f2a9f51989f3b3672d531966195c12 (patch)
treec75f25f2a7b3a58ae07de808e3c65493d159c681 /scripts
parentf3215da040045417626e725da9b665248dfb9706 (diff)
downloadpoky-8262db1c27f2a9f51989f3b3672d531966195c12.tar.gz
resulttool/manualexecution: Standardize input check
Current input checking does not match the standard input practiced by QA team. Change the input checking to match the standard input practiced by the QA team. (From OE-Core rev: 630a93c740359a65249a198f314f15040042f8d3) Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lib/resulttool/manualexecution.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/resulttool/manualexecution.py b/scripts/lib/resulttool/manualexecution.py
index 6487cd9bff..8ce7903892 100755
--- a/scripts/lib/resulttool/manualexecution.py
+++ b/scripts/lib/resulttool/manualexecution.py
@@ -45,9 +45,9 @@ class ManualTestRunner(object):
45 def _get_input(self, config): 45 def _get_input(self, config):
46 while True: 46 while True:
47 output = input('{} = '.format(config)) 47 output = input('{} = '.format(config))
48 if re.match('^[a-zA-Z0-9_-]+$', output): 48 if re.match('^[a-z0-9-.]+$', output):
49 break 49 break
50 print('Only alphanumeric and underscore/hyphen are allowed. Please try again') 50 print('Only lowercase alphanumeric, hyphen and dot are allowed. Please try again')
51 return output 51 return output
52 52
53 def _create_config(self): 53 def _create_config(self):