mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
selftest-hardlink: Add additional test cases
Additional test cases for debug symlink generation both binaries and static libraries. This also has the side effect of testing for race conditions in the hardlink debug generation and stripping. (From OE-Core rev: 39823d3211411e661320e1164ba4c50370804425) Signed-off-by: Mark Hatle <mark.hatle@amd.com> Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7171f41c07a39a7543bb64f075d38b8e74563089) Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
0d017528d4
commit
c80d82054e
@@ -10,6 +10,9 @@ S = "${WORKDIR}"
|
||||
|
||||
do_compile () {
|
||||
${CC} hello.c -o hello1 ${CFLAGS} ${LDFLAGS}
|
||||
|
||||
${CC} hello.c -c -o hello.o ${CFLAGS}
|
||||
${AR} rcs libhello.a hello.o
|
||||
}
|
||||
|
||||
do_install () {
|
||||
@@ -22,9 +25,19 @@ do_install () {
|
||||
ln ${D}${bindir}/hello1 ${D}${libexecdir}/hello3
|
||||
ln ${D}${bindir}/hello1 ${D}${libexecdir}/hello4
|
||||
|
||||
# We need so many hardlink copies to look for specific race conditions
|
||||
install -d ${D}${libdir}
|
||||
install -m 0644 libhello.a ${D}${libdir}
|
||||
for num in `seq 1 100` ; do
|
||||
ln ${D}${libdir}/libhello.a ${D}${libdir}/libhello-${num}.a
|
||||
done
|
||||
|
||||
dd if=/dev/zero of=${D}${bindir}/sparsetest bs=1 count=0 seek=1M
|
||||
}
|
||||
|
||||
RDEPENDS:${PN}-gdb += "gdb"
|
||||
PACKAGES =+ "${PN}-gdb"
|
||||
FILES:${PN}-gdb = "${bindir}/gdb.sh"
|
||||
|
||||
PACKAGE_STRIP_STATIC = "1"
|
||||
PACKAGE_DEBUG_STATIC_SPLIT = "1"
|
||||
|
||||
Reference in New Issue
Block a user