From ae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4 Mon Sep 17 00:00:00 2001 From: Chris Larsen Date: Tue, 30 May 2017 16:36:58 -0700 Subject: MIPS: Lower LibartImgDeviceBaseAddress() to fix ART tests. Some of ART tests fail to mmap memory unless LibartImgDeviceBaseAddress() is further lowered. Test: booted MIPS32R2 in QEMU Test: booted MIPS64 (with 2nd arch MIPS32R6) in QEMU Test: test-art-target-gtest Test: testrunner.py --target --optimizing Test: repeat all of the above in configurations ART_READ_BARRIER_TYPE=TABLELOOKUP, ART_USE_READ_BARRIER=false Test: repeat the above tests on CI20 Change-Id: I48cd9d8074e07073cc6abb2153660e00017b9e6b --- android/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/config.go b/android/config.go index b83ffd4a..869a5c43 100644 --- a/android/config.go +++ b/android/config.go @@ -466,7 +466,7 @@ func (c *config) LibartImgDeviceBaseAddress() string { default: return "0x70000000" case Mips, Mips64: - return "0x64000000" + return "0x5C000000" } } -- cgit v1.2.3