]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa: Default to buffer mode for tests
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 14 Jul 2018 14:50:48 +0000 (14:50 +0000)
committerArmin Kuster <akuster808@gmail.com>
Tue, 9 Apr 2019 12:27:17 +0000 (17:57 +0530)
Currently some tests run in buffer mode and some don't. Those that don't can
corrupt stdout/stderr. Switch to using buffer mode everywhere so we're consistent.

If there is useful output on stdout/stderr, it will be displayed if the test
fails.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/lib/oeqa/core/context.py
meta/lib/oeqa/core/runner.py
meta/lib/oeqa/selftest/cases/devtool.py
meta/lib/oeqa/selftest/cases/efibootpartition.py
meta/lib/oeqa/selftest/cases/imagefeatures.py
meta/lib/oeqa/selftest/cases/runqemu.py

index ef008454ffdc1700f3e558380e22caded87aadc3..cd6db234a446f685903c55e57c5fb46f4315afc9 100644 (file)
@@ -58,7 +58,7 @@ class OETestContext(object):
         self.suites = self.loader.discover()
 
     def runTests(self, skips=[]):
-        self.runner = self.runnerClass(self, descriptions=False, verbosity=2)
+        self.runner = self.runnerClass(self, descriptions=False, verbosity=2, buffer=True)
 
         # Dinamically skip those tests specified though arguments
         self.skipTests(skips)
index f8bb23f344c697fbd7f1097327c4758a7e14a628..0e6d215db1d90525d549e0302bf2baaad2f29b17 100644 (file)
@@ -43,11 +43,6 @@ class OETestResult(_TestResult):
         self.tc = tc
 
     def startTest(self, test):
-        # Allow us to trigger the testcase buffer mode on a per test basis
-        # so stdout/stderr are only printed upon failure. Enables debugging
-        # but clean output
-        if hasattr(test, "buffer"):
-            self.buffer = test.buffer
         super(OETestResult, self).startTest(test)
 
     def logSummary(self, component, context_msg=''):
index 627bc65e42bdab42c27ff3ba4e1a0838aa85f293..99bfcd3d0578bcfa93b3bf323a361f59d50b6f3b 100644 (file)
@@ -78,8 +78,6 @@ def tearDownModule():
 
 class DevtoolBase(OESelftestTestCase):
 
-    buffer = True
-
     def _test_recipe_contents(self, recipefile, checkvars, checkinherits):
         with open(recipefile, 'r') as f:
             invar = None
index 0c832566965fcc1306b6b5cf2d9167cc15f30fc7..c6f39d5b1627a2445fb9a86a62a84028897545f8 100644 (file)
@@ -11,7 +11,6 @@ from oeqa.utils.commands import bitbake, runqemu, get_bb_var
 class GenericEFITest(OESelftestTestCase):
     """EFI booting test class"""
 
-    buffer = True
     cmd_common = "runqemu nographic serial wic ovmf"
     efi_provider = "systemd-boot"
     image = "core-image-minimal"
index 09e0b20625b102fc328b6be2e20f6b326eb50afc..cdfd74b447d36415f91b5a699f43e1a023a0a2ba 100644 (file)
@@ -10,8 +10,6 @@ class ImageFeatures(OESelftestTestCase):
     test_user = 'tester'
     root_user = 'root'
 
-    buffer = True
-
     @OETestID(1107)
     def test_non_root_user_can_connect_via_ssh_without_password(self):
         """
index 8f4084d4b40303ebb168fc36120d7d1796c2fdd7..a23a1d87350be918a1ddb86202a95483d1fc0837 100644 (file)
@@ -15,8 +15,6 @@ class RunqemuTests(OESelftestTestCase):
 
     image_is_ready = False
     deploy_dir_image = ''
-    # We only want to print runqemu stdout/stderr if there is a test case failure
-    buffer = True
 
     def setUpLocal(self):
         super(RunqemuTests, self).setUpLocal()