mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Currently some of the runtime test overwrites the setUp and tearDown methods provided by oeRuntimeTest, this will avoid some checks required when running the test suit. This patch changes the setUp and tearDown methods for their local counterparts, so when these tests are called, it will run the parent setUp and tearDown and also the local ones. [YOCTO #8465] (From OE-Core rev: 13282223b07787a92c251f89251e8a49a0e4e3eb) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
959 B
Python
29 lines
959 B
Python
import unittest
|
|
from oeqa.oetest import oeRuntimeTest, skipModule
|
|
from oeqa.utils.decorators import *
|
|
|
|
def setUpModule():
|
|
if not oeRuntimeTest.hasPackage("pax-utils"):
|
|
skipModule("pax-utils package not installed")
|
|
|
|
class ScanelfTest(oeRuntimeTest):
|
|
|
|
def setUpLocal(self):
|
|
self.scancmd = 'scanelf --quiet --recursive --mount --ldpath --path'
|
|
|
|
@testcase(966)
|
|
@skipUnlessPassed('test_ssh')
|
|
def test_scanelf_textrel(self):
|
|
# print TEXTREL information
|
|
self.scancmd += " --textrel"
|
|
(status, output) = self.target.run(self.scancmd)
|
|
self.assertEqual(output.strip(), "", "\n".join([self.scancmd, output]))
|
|
|
|
@testcase(967)
|
|
@skipUnlessPassed('test_ssh')
|
|
def test_scanelf_rpath(self):
|
|
# print RPATH information
|
|
self.scancmd += " --rpath"
|
|
(status, output) = self.target.run(self.scancmd)
|
|
self.assertEqual(output.strip(), "", "\n".join([self.scancmd, output]))
|