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-24 17:54:27 +0100 |
commit | 8733b53826539b6278867a0d57d6eaf52d585a24 (patch) | |
tree | 8c8cbcad384aa272e64998f917f3296f8bd58992 /meta/lib | |
parent | f1e7fb0856b2f1d403784d11332a5df9bccc74f5 (diff) | |
download | poky-8733b53826539b6278867a0d57d6eaf52d585a24.tar.gz |
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.
(From OE-Core rev: 9f89e8e0bf2ba65f2cff5adb3050d6a701dc486a)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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(): | |||
112 | d["DEPLOY_DIR"] = options.deploy_dir | 112 | d["DEPLOY_DIR"] = options.deploy_dir |
113 | else: | 113 | else: |
114 | if not os.path.isdir(d["DEPLOY_DIR"]): | 114 | if not os.path.isdir(d["DEPLOY_DIR"]): |
115 | raise Exception("The path to DEPLOY_DIR does not exists: %s" % d["DEPLOY_DIR"]) | 115 | print("WARNING: The path to DEPLOY_DIR does not exist: %s" % d["DEPLOY_DIR"]) |
116 | 116 | ||
117 | 117 | ||
118 | target = FakeTarget(d) | 118 | target = FakeTarget(d) |