1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Relax LOAD entries condition in repeated-updates test
This is a new test which fails on mips64el
Bug: https://github.com/NixOS/patchelf/issues/515
Bug-Debian: https://bugs.debian.org/1059752
Author: Graham Inggs <ginggs@debian.org>
Last-Update: 2024-02-29
--- a/tests/repeated-updates.sh
+++ b/tests/repeated-updates.sh
@@ -33,7 +33,7 @@
# To be even more strict, check that we don't add too many extra LOAD entries
###############################################################################
echo "Segments before: ${load_segments_before} and after: ${load_segments_after}"
-if [ "${load_segments_after}" -gt $((load_segments_before + 2)) ]
+if [ "${load_segments_after}" -gt $((load_segments_before + 3)) ]
then
exit 1
fi
|