mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
Tweak recipe selftest-hardlink
- addition of libexecdir to simulate multiple directories
- add gdb.sh to run gdb from script which is invoked at test time.
- rename `hello' -> `hello1' to workaround name confliction with the one in lmbench
Add test_gdb_hardlink_debug to selftest/package
- run a qemu and invoke gdb.sh to gdb binaries of selftest-hardlink
- check gdb to read symbols from separated debug hardlink file
- check debug symbols works correctly
[Test without commit `package.bbclass: only one hardlink of separated debug info file in each directory']
2018-08-26 01:27:30,195 - oe-selftest - INFO - test_gdb_hardlink_debug (package.PackageTests)
2018-08-26 01:30:29,005 - oe-selftest - INFO - gdbtest /usr/bin/hello1
2018-08-26 01:30:36,539 - oe-selftest - INFO - gdbtest /usr/bin/hello2
2018-08-26 01:30:43,568 - oe-selftest - INFO - gdbtest /usr/libexec/hello3
2018-08-26 01:30:50,157 - oe-selftest - ERROR - No debugging symbols found. GDB result:
Reading symbols from /usr/libexec/hello3...(no debugging symbols found)...done.^M
(gdb) Function "main" not defined.^M
Make breakpoint pending on future shared library load? (y or [n]) [answered N; input not from terminal]^M
(gdb) Starting program: /usr/libexec/hello3 ^M
Hello World!^M
[Inferior 1 (process 320) exited normally]^M
(gdb) The program is not being run.^M
(gdb)
2018-08-26 01:30:51,180 - oe-selftest - INFO - ... FAIL
2018-08-26 01:30:51,181 - oe-selftest - INFO - Traceback (most recent call last):
File "oe-core/meta/lib/oeqa/selftest/cases/package.py", line 148, in test_gdb_hardlink_debug
self.fail('GDB %s failed' % binary)
AssertionError: GDB /usr/libexec/hello3 failed
[Test without commit `package.bbclass: only one hardlink of separated debug info file in each directory']
[Test with commit `package.bbclass: only one hardlink of separated debug info file in each directory']
2018-08-26 12:40:30,976 - oe-selftest - INFO - test_gdb_hardlink_debug (package.PackageTests)
2018-08-26 12:42:15,149 - oe-selftest - INFO - gdbtest /usr/bin/hello1
2018-08-26 12:42:24,064 - oe-selftest - INFO - gdbtest /usr/bin/hello2
2018-08-26 12:42:31,078 - oe-selftest - INFO - gdbtest /usr/libexec/hello3
2018-08-26 12:42:38,646 - oe-selftest - INFO - gdbtest /usr/libexec/hello4
2018-08-26 12:42:46,824 - oe-selftest - INFO - ... ok
[Test with commit `package.bbclass: only one hardlink of separated debug info file in each directory']
(From OE-Core rev: 104d07e57488f4a414fb5e1f60d0c8b0c02d6b4d)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
150 lines
6.6 KiB
Python
150 lines
6.6 KiB
Python
from oeqa.selftest.case import OESelftestTestCase
|
|
from oeqa.core.decorator.oeid import OETestID
|
|
from oeqa.utils.commands import bitbake, get_bb_vars, get_bb_var, runqemu
|
|
import stat
|
|
import subprocess, os
|
|
import oe.path
|
|
|
|
class VersionOrdering(OESelftestTestCase):
|
|
# version1, version2, sort order
|
|
tests = (
|
|
("1.0", "1.0", 0),
|
|
("1.0", "2.0", -1),
|
|
("2.0", "1.0", 1),
|
|
("2.0-rc", "2.0", 1),
|
|
("2.0~rc", "2.0", -1),
|
|
("1.2rc2", "1.2.0", -1)
|
|
)
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
|
|
# Build the tools we need and populate a sysroot
|
|
bitbake("dpkg-native opkg-native rpm-native python3-native")
|
|
bitbake("build-sysroots -c build_native_sysroot")
|
|
|
|
# Get the paths so we can point into the sysroot correctly
|
|
vars = get_bb_vars(["STAGING_DIR", "BUILD_ARCH", "bindir_native", "libdir_native"])
|
|
cls.staging = oe.path.join(vars["STAGING_DIR"], vars["BUILD_ARCH"])
|
|
cls.bindir = oe.path.join(cls.staging, vars["bindir_native"])
|
|
cls.libdir = oe.path.join(cls.staging, vars["libdir_native"])
|
|
|
|
def setUpLocal(self):
|
|
# Just for convenience
|
|
self.staging = type(self).staging
|
|
self.bindir = type(self).bindir
|
|
self.libdir = type(self).libdir
|
|
|
|
@OETestID(1880)
|
|
def test_dpkg(self):
|
|
for ver1, ver2, sort in self.tests:
|
|
op = { -1: "<<", 0: "=", 1: ">>" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "dpkg"), "--compare-versions", ver1, op, ver2))
|
|
self.assertEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
# Now do it again but with incorrect operations
|
|
op = { -1: ">>", 0: ">>", 1: "<<" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "dpkg"), "--compare-versions", ver1, op, ver2))
|
|
self.assertNotEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
# Now do it again but with incorrect operations
|
|
op = { -1: "=", 0: "<<", 1: "=" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "dpkg"), "--compare-versions", ver1, op, ver2))
|
|
self.assertNotEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
@OETestID(1881)
|
|
def test_opkg(self):
|
|
for ver1, ver2, sort in self.tests:
|
|
op = { -1: "<<", 0: "=", 1: ">>" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "opkg"), "compare-versions", ver1, op, ver2))
|
|
self.assertEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
# Now do it again but with incorrect operations
|
|
op = { -1: ">>", 0: ">>", 1: "<<" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "opkg"), "compare-versions", ver1, op, ver2))
|
|
self.assertNotEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
# Now do it again but with incorrect operations
|
|
op = { -1: "=", 0: "<<", 1: "=" }[sort]
|
|
status = subprocess.call((oe.path.join(self.bindir, "opkg"), "compare-versions", ver1, op, ver2))
|
|
self.assertNotEqual(status, 0, "%s %s %s failed" % (ver1, op, ver2))
|
|
|
|
@OETestID(1882)
|
|
def test_rpm(self):
|
|
# Need to tell the Python bindings where to find its configuration
|
|
env = os.environ.copy()
|
|
env["RPM_CONFIGDIR"] = oe.path.join(self.libdir, "rpm")
|
|
|
|
for ver1, ver2, sort in self.tests:
|
|
# The only way to test rpm is via the Python module, so we need to
|
|
# execute python3-native. labelCompare returns -1/0/1 (like strcmp)
|
|
# so add 100 and use that as the exit code.
|
|
command = (oe.path.join(self.bindir, "python3-native", "python3"), "-c",
|
|
"import sys, rpm; v1=(None, \"%s\", None); v2=(None, \"%s\", None); sys.exit(rpm.labelCompare(v1, v2) + 100)" % (ver1, ver2))
|
|
status = subprocess.call(command, env=env)
|
|
self.assertIn(status, (99, 100, 101))
|
|
self.assertEqual(status - 100, sort, "%s %s (%d) failed" % (ver1, ver2, sort))
|
|
|
|
class PackageTests(OESelftestTestCase):
|
|
# Verify that a recipe which sets up hardlink files has those preserved into split packages
|
|
# Also test file sparseness is preserved
|
|
def test_preserve_sparse_hardlinks(self):
|
|
bitbake("selftest-hardlink -c package")
|
|
|
|
dest = get_bb_var('PKGDEST', 'selftest-hardlink')
|
|
bindir = get_bb_var('bindir', 'selftest-hardlink')
|
|
|
|
def checkfiles():
|
|
# Recipe creates 4 hardlinked files, there is a copy in package/ and a copy in packages-split/
|
|
# so expect 8 in total.
|
|
self.assertEqual(os.stat(dest + "/selftest-hardlink" + bindir + "/hello1").st_nlink, 8)
|
|
|
|
# Test a sparse file remains sparse
|
|
sparsestat = os.stat(dest + "/selftest-hardlink" + bindir + "/sparsetest")
|
|
self.assertEqual(sparsestat.st_blocks, 0)
|
|
self.assertEqual(sparsestat.st_size, 1048576)
|
|
|
|
checkfiles()
|
|
|
|
# Clean and reinstall so its now definitely from sstate, then retest.
|
|
bitbake("selftest-hardlink -c clean")
|
|
bitbake("selftest-hardlink -c package")
|
|
|
|
checkfiles()
|
|
|
|
# Verify gdb to read symbols from separated debug hardlink file correctly
|
|
def test_gdb_hardlink_debug(self):
|
|
features = 'IMAGE_INSTALL_append = " selftest-hardlink"\n'
|
|
features += 'IMAGE_INSTALL_append = " selftest-hardlink-dbg"\n'
|
|
features += 'IMAGE_INSTALL_append = " selftest-hardlink-gdb"\n'
|
|
self.write_config(features)
|
|
bitbake("core-image-minimal")
|
|
|
|
def gdbtest(qemu, binary):
|
|
"""
|
|
Check that gdb ``binary`` to read symbols from separated debug file
|
|
"""
|
|
self.logger.info("gdbtest %s" % binary)
|
|
status, output = qemu.run_serial('/usr/bin/gdb.sh %s' % binary, timeout=60)
|
|
for l in output.split('\n'):
|
|
# Check debugging symbols exists
|
|
if '(no debugging symbols found)' in l:
|
|
self.logger.error("No debugging symbols found. GDB result:\n%s" % output)
|
|
return False
|
|
|
|
# Check debugging symbols works correctly
|
|
elif "Breakpoint 1, main () at hello.c:4" in l:
|
|
return True
|
|
|
|
self.logger.error("GDB result:\n%s: %s" % output)
|
|
return False
|
|
|
|
with runqemu('core-image-minimal') as qemu:
|
|
for binary in ['/usr/bin/hello1',
|
|
'/usr/bin/hello2',
|
|
'/usr/libexec/hello3',
|
|
'/usr/libexec/hello4']:
|
|
if not gdbtest(qemu, binary):
|
|
self.fail('GDB %s failed' % binary)
|