diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/oe-test b/scripts/oe-test index a1d282db33..f90d85b3da 100755 --- a/scripts/oe-test +++ b/scripts/oe-test @@ -26,6 +26,7 @@ except ImportError: pass from oeqa.core.context import OETestContextExecutor +from oeqa.core.exception import OEQAPreRun logger = scriptutils.logger_create('oe-test') @@ -92,6 +93,8 @@ def main(): ret = err.code except argparse_oe.ArgumentUsageError as ae: parser.error_subcommand(ae.message, ae.subcommand) + except OEQAPreRun as pr: + ret = 1 return ret |