From 9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a Mon Sep 17 00:00:00 2001 From: Lucian Musat Date: Wed, 23 Sep 2015 18:40:26 +0300 Subject: oeqa/runexported: Removed DEPLOY_DIR as mandatory. We don't need DEPLOY_DIR for every runtime test so there is no need for it to be mandatory. Signed-off-by: Lucian Musat Signed-off-by: Richard Purdie --- meta/lib/oeqa/runexported.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py index 96442b1b27..4213cab7bc 100755 --- a/meta/lib/oeqa/runexported.py +++ b/meta/lib/oeqa/runexported.py @@ -112,7 +112,7 @@ def main(): d["DEPLOY_DIR"] = options.deploy_dir else: if not os.path.isdir(d["DEPLOY_DIR"]): - raise Exception("The path to DEPLOY_DIR does not exists: %s" % d["DEPLOY_DIR"]) + print("WARNING: The path to DEPLOY_DIR does not exist: %s" % d["DEPLOY_DIR"]) target = FakeTarget(d) -- cgit 1.2.3-korg