]> code.ossystems Code Review - openembedded-core.git/commitdiff
sanity: don't enforce DISPLAY for testimage
authorRoss Burton <ross.burton@intel.com>
Mon, 23 Nov 2015 12:09:06 +0000 (12:09 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 1 Dec 2015 21:07:20 +0000 (21:07 +0000)
Now that qemurunner doesn't need DISPLAY set, let whether DISPLAY is set be up
to the user.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/sanity.bbclass

index ae86d261e7c50704cf7d5add2d811fe16ffb8258..ad9dda878a64fe8f97467cf0beb8530eb7dad5b1 100644 (file)
@@ -749,14 +749,6 @@ def check_sanity_everybuild(status, d):
 
     check_supported_distro(d)
 
-    # Check if DISPLAY is set if TEST_IMAGE is set
-    if d.getVar('TEST_IMAGE', True) == '1' or d.getVar('DEFAULT_TEST_SUITES', True):
-        testtarget = d.getVar('TEST_TARGET', True)
-        if testtarget == 'qemu' or testtarget == 'QemuTarget':
-            display = d.getVar("BB_ORIGENV", False).getVar("DISPLAY", True)
-            if not display:
-                status.addresult('testimage needs an X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n')
-
     omask = os.umask(022)
     if omask & 0755:
         status.addresult("Please use a umask which allows a+rx and u+rwx\n")