Thomas Renninger
c7794b8183
- 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
18 lines
554 B
Diff
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))
|