mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 03:33:02 +01:00
- Backport patches from debian to 0.168 and add US tags. - Rebase 0001-build-Provide-alternatives-for-glibc-assumptions-hel.patch to support libc musl (From OE-Core rev: 13e5819dc4ef44d99d0f22686365fd3c988d6bce) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
744 B
Diff
21 lines
744 B
Diff
Upstream-Status: Backport [from debian]
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
|
|
Index: b/tests/run-native-test.sh
|
|
===================================================================
|
|
--- a/tests/run-native-test.sh
|
|
+++ b/tests/run-native-test.sh
|
|
@@ -77,6 +77,12 @@ native_test()
|
|
test $native -eq 0 || testrun "$@" -p $native > /dev/null
|
|
}
|
|
|
|
+# On the Debian buildds, GNU/kFreeBSD linprocfs /proc/$PID/maps does
|
|
+# not give absolute paths due to sbuild's bind mounts (bug #570805)
|
|
+# therefore the next two test programs are expected to fail with
|
|
+# "cannot attach to process: Function not implemented".
|
|
+[ "$(uname)" = "GNU/kFreeBSD" ] && exit 77
|
|
+
|
|
native_test ${abs_builddir}/allregs
|
|
native_test ${abs_builddir}/funcretval
|
|
|