Skip to content

Commit 6d7b862

Browse files
author
dcashman
committed
Correct aslr_test minimum arm value.
Default mmap_rnd_bits value is now equal to the maximum supported (16) on arm, not the minimum, 8. Adjust the test criteria to match this. Bug: 27680571 Change-Id: I16f2c3120c92ca9ea537f445ba24ebd8172d613f
1 parent b098491 commit 6d7b862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/kernel.config/aslr_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ void AslrMmapTest::SetUpTestCase() {
187187

188188
#elif defined(__arm__)
189189
unsigned int pgbits = std::log2(getpagesize());
190-
def = 8;
190+
def = 16;
191191
min = 8;
192192
max = 16;
193193
path = SCRAPE_PATH_32;

0 commit comments

Comments
 (0)