[oe-commits] [openembedded-core] 38/68: testimage.bbclass: remove boot parameter systemd.log_target

git at git.openembedded.org git at git.openembedded.org
Mon Jan 28 17:07:37 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch thud-next
in repository openembedded-core.

commit 51423c3945d55ebabe38dd365d24f226155c1a97
Author: Kai Kang <kai.kang at windriver.com>
AuthorDate: Tue Dec 25 04:39:43 2018 -0500

    testimage.bbclass: remove boot parameter systemd.log_target
    
    Boot parameter systemd.log_target=console affects command journalctl's
    output and causes oe selftest case test_systemd_boot_time fail to pass.
    
    | Error at obtaining the boot time from journalctl
    | RESULTS:
    | RESULTS - systemd.SystemdJournalTests.test_systemd_boot_time - Testcase -1: SKIPPED (0.74s)
    
    systemd.log_target=console was introduced by oe-core commit a0bb649 and
    work with parameter systemd.log_level to enable systemd debug.
    systemd.log_level has been removed already, so remove systemd.log_target
    too to make case test_systemd_boot_time pass.
    
    (From OE-Core rev: caa776bdcf8ea34c857f45970370bf771075f4bc)
    
    Signed-off-by: Kai Kang <kai.kang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/testimage.bbclass | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index ed82a56..43a0aba 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -287,18 +287,12 @@ def testimage_main(d):
 
     package_extraction(d, tc.suites)
 
-    bootparams = None
-    if d.getVar('VIRTUAL-RUNTIME_init_manager', '') == 'systemd':
-        # Add systemd.log_level=debug to enable systemd debug logging
-        bootparams = 'systemd.log_target=console'
-
     results = None
     orig_sigterm_handler = signal.signal(signal.SIGTERM, sigterm_exception)
     try:
         # We need to check if runqemu ends unexpectedly
         # or if the worker send us a SIGTERM
-        tc.target.start(params=d.getVar("TEST_QEMUPARAMS"),
-                        extra_bootparams=bootparams)
+        tc.target.start(params=d.getVar("TEST_QEMUPARAMS"))
         results = tc.runTests()
     except (RuntimeError, BlockingIOError) as err:
         if isinstance(err, RuntimeError):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list