From e7458dd24cb7464852fb7f5357d9108d5c052fa6 Mon Sep 17 00:00:00 2001 From: Leonardo Sandoval Date: Fri, 26 May 2017 15:37:50 -0500 Subject: oeqa/core/context: Raise exception when a manifest is specified but missing Signed-off-by: Leonardo Sandoval Signed-off-by: Richard Purdie --- meta/lib/oeqa/core/context.py | 3 ++- meta/lib/oeqa/core/exception.py | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 28ae017090..1ac28788fa 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa/core/context.py @@ -10,6 +10,7 @@ import collections from oeqa.core.loader import OETestLoader from oeqa.core.runner import OETestRunner +from oeqa.core.exception import OEQAMissingManifest class OETestContext(object): loaderClass = OETestLoader @@ -30,7 +31,7 @@ class OETestContext(object): def _read_modules_from_manifest(self, manifest): if not os.path.exists(manifest): - raise + raise OEQAMissingManifest("Manifest does not exist on %s" % manifest) modules = [] for line in open(manifest).readlines(): diff --git a/meta/lib/oeqa/core/exception.py b/meta/lib/oeqa/core/exception.py index 2dfd8402cf..97ef19dd77 100644 --- a/meta/lib/oeqa/core/exception.py +++ b/meta/lib/oeqa/core/exception.py @@ -12,3 +12,6 @@ class OEQAMissingVariable(OEQAException): class OEQADependency(OEQAException): pass + +class OEQAMissingManifest(OEQAException): + pass -- cgit 1.2.3-korg