libhugetlbfs/libhugetlbfs_fix_tests.patch
Thomas Renninger c7794b8183 Accepting request 639406 from home:SchoolGuy:branches:Base:System
- Removed make target "install-perlmod" and filecheck from packaging process.
- Update to 2.21
- Bug Fixes
  * The noexec stack markers are set directly
  * We no longer lie to glibc about shrinking the heap by less than HPAGE_SIZE
- Test Suite
  * No existent tests are no longer marked Killed By Signal
  * Disable malloc per-thread cache for heap shrinking tests
- Remove patch "ignore-perl-modules.diff"

OBS-URL: https://build.opensuse.org/request/show/639406
OBS-URL: https://build.opensuse.org/package/show/Base:System/libhugetlbfs?expand=0&rev=53
2018-10-02 09:41:43 +00:00

18 lines
554 B
Diff

References: bnc#706891
Signed-off-by: Thomas Renninger <trenn@suse.de>
Index: libhugetlbfs-2.21/tests/run_tests.py
===================================================================
--- libhugetlbfs-2.21.orig/tests/run_tests.py
+++ libhugetlbfs-2.21/tests/run_tests.py
@@ -236,7 +236,7 @@ def get_pagesizes():
"""
sizes = set()
out = ""
- (rc, out) = bash("../obj/hugeadm --page-sizes")
+ (rc, out) = bash("hugeadm --page-sizes")
if rc != 0 or out == "": return sizes
for size in out.split("\n"): sizes.add(int(size))