summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordcashman <dcashman@google.com>2016-03-15 15:14:20 -0700
committerdcashman <dcashman@google.com>2016-03-15 15:17:58 -0700
commit6d7b862b59743b64500b9b079c90cc50d556ecdf (patch)
tree21a1a20b20154d7a3f61046b177d97bb3864746a
parentb098491ac69154f8633d11c0fc4a50429d374a4a (diff)
downloadextras-6d7b862b59743b64500b9b079c90cc50d556ecdf.tar.gz
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
-rw-r--r--tests/kernel.config/aslr_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kernel.config/aslr_test.cpp b/tests/kernel.config/aslr_test.cpp
index cda121c6..ff19a109 100644
--- a/tests/kernel.config/aslr_test.cpp
+++ b/tests/kernel.config/aslr_test.cpp
@@ -187,7 +187,7 @@ void AslrMmapTest::SetUpTestCase() {
#elif defined(__arm__)
unsigned int pgbits = std::log2(getpagesize());
- def = 8;
+ def = 16;
min = 8;
max = 16;
path = SCRAPE_PATH_32;