diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-07 09:16:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-07 09:17:44 +0000 |
commit | 5db5904614296cfa530458741feebc9f57cf753b (patch) | |
tree | f80667a3bfc61d8bac3bae96c74b092c8812c92b | |
parent | a0ef94d3aec3ac347d7cd20b4b5844f687381958 (diff) | |
download | poky-5db5904614296cfa530458741feebc9f57cf753b.tar.gz |
sanity.bbclass: Check for DISPLAY for qemutests in BB_ORIGENV now
(From OE-Core rev: e43f8f917e4069d74b467dfd6aa29ff762e83a5e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sanity.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 48ac77d744..e1888ba34b 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -499,8 +499,10 @@ def check_sanity(sanity_data): | |||
499 | messages = messages + toolchain_msg + '\n' | 499 | messages = messages + toolchain_msg + '\n' |
500 | 500 | ||
501 | # Check if DISPLAY is set if IMAGETEST is set | 501 | # Check if DISPLAY is set if IMAGETEST is set |
502 | if not sanity_data.getVar( 'DISPLAY', True ) and sanity_data.getVar( 'IMAGETEST', True ) == 'qemu': | 502 | if sanity_data.getVar( 'IMAGETEST', True ) == 'qemu': |
503 | messages = messages + 'qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n' | 503 | display = sanity_data.getVar("BB_ORIGENV", False).getVar("DISPLAY", True) |
504 | if not display: | ||
505 | messages = messages + 'qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n' | ||
504 | 506 | ||
505 | omask = os.umask(022) | 507 | omask = os.umask(022) |
506 | if omask & 0755: | 508 | if omask & 0755: |