diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-09-23 18:40:26 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 22:08:13 +0100 |
commit | 9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a (patch) | |
tree | 6df6e05f774fe852024fb2ce77b3b37ddc840c4d | |
parent | 22bd8a600823306d7c5965a9a69b8e8888993513 (diff) | |
download | openembedded-core-9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a.tar.gz openembedded-core-9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a.tar.bz2 openembedded-core-9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a.zip |
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 <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | meta/lib/oeqa/runexported.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |