aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larsen <chris.larsen@imgtec.com>2017-05-30 16:36:58 -0700
committerChris Larsen <chris.larsen@imgtec.com>2017-05-30 16:38:42 -0700
commitae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4 (patch)
treef34fe5a25813cbac060beedcf3274cf2aa532f0e
parenta9ec71f54f41c6261909525030a44d34a8cff479 (diff)
downloadbuild_soong-ae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4.tar.gz
build_soong-ae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4.tar.bz2
build_soong-ae7f3e26ec88559c9e1d9b4aedac78fff83e4ea4.zip
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
-rw-r--r--android/config.go2
1 files changed, 1 insertions, 1 deletions
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"
}
}