summaryrefslogtreecommitdiffstats
path: root/runtime/common_runtime_test.h
diff options
context:
space:
mode:
authorDouglas Leung <douglas.leung@imgtec.com>2015-04-30 19:22:49 -0700
committerAndreas Gampe <agampe@google.com>2015-05-06 20:49:09 -0700
commitd90957fbe6f41c66d5494ae5db1f60d2434d4c84 (patch)
tree684845d53237196fa8dd66dd545d6b33cdb71051 /runtime/common_runtime_test.h
parent8771be9a5826ebe12cea0c2feb0fa085df5d60a2 (diff)
downloadart-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.tar.gz
art-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.tar.bz2
art-d90957fbe6f41c66d5494ae5db1f60d2434d4c84.zip
ART: Fix mips64 jni bugs.
For mips64, 32-bits loads can be zero extended or sign extended to 64-bits. The extension type must match the data type to be loaded. Also re-enable mips64 generic jni testing. Change-Id: I9cabaf80b4fde63d9868fccd74593b36d1c324e8
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r--runtime/common_runtime_test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h
index 991737893a..34fdd8d76a 100644
--- a/runtime/common_runtime_test.h
+++ b/runtime/common_runtime_test.h
@@ -182,7 +182,7 @@ class CheckJniAbortCatcher {
}
#define TEST_DISABLED_FOR_MIPS() \
- if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { \
+ if (kRuntimeISA == kMips) { \
printf("WARNING: TEST DISABLED FOR MIPS\n"); \
return; \
}