diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-14 12:01:58 +0000 | |
commit | 41b605c5ad4b06ea127ac56c6e3a4c92e8913efd (patch) | |
tree | f7b28eb11051f3faada99c11dc594cccd34a5786 /runtime/common_runtime_test.h | |
parent | 30b38f8d01cdb4c80092638f23c61d73e0d287f4 (diff) |
Remove MIPS support from runtime/.
Test: aosp_taimen-userdebug boots.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 147346243
Change-Id: If1fc8be94caa69f734438d7a1f4c715addfd8876
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r-- | runtime/common_runtime_test.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h index 750051576d..2dc8744834 100644 --- a/runtime/common_runtime_test.h +++ b/runtime/common_runtime_test.h @@ -260,18 +260,6 @@ class CheckJniAbortCatcher { return; \ } -#define TEST_DISABLED_FOR_MIPS() \ - if (kRuntimeISA == InstructionSet::kMips) { \ - printf("WARNING: TEST DISABLED FOR MIPS\n"); \ - return; \ - } - -#define TEST_DISABLED_FOR_MIPS64() \ - if (kRuntimeISA == InstructionSet::kMips64) { \ - printf("WARNING: TEST DISABLED FOR MIPS64\n"); \ - return; \ - } - #define TEST_DISABLED_FOR_X86() \ if (kRuntimeISA == InstructionSet::kX86) { \ printf("WARNING: TEST DISABLED FOR X86\n"); \ |