mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
- Update debian 0.170 patches and rebase them for 0.172; - Drop 0001-Use-fallthrough-attribute.patch which was accepted by upstream; - Drop 0001-Ensure-that-packed-structs-follow-the-gcc-memory-lay.patch which was backported from upstream; (From OE-Core rev: dbbe9c1d1f822cf13a4c16b79bccf6bf5c4b91e4) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
650 B
Diff
18 lines
650 B
Diff
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
|
|
|