summaryrefslogtreecommitdiff
path: root/runtime/common_runtime_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r--runtime/common_runtime_test.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h
index 0f164a7d07..8f9d7a80ff 100644
--- a/runtime/common_runtime_test.h
+++ b/runtime/common_runtime_test.h
@@ -283,6 +283,11 @@ class CheckJniAbortCatcher {
GTEST_SKIP() << "WARNING: TEST DISABLED FOR ARM64"; \
}
+#define TEST_DISABLED_FOR_RISCV64() \
+ if (kRuntimeISA == InstructionSet::kRiscv64) { \
+ GTEST_SKIP() << "WARNING: TEST DISABLED FOR RISCV64"; \
+ }
+
#define TEST_DISABLED_FOR_X86() \
if (kRuntimeISA == InstructionSet::kX86) { \
GTEST_SKIP() << "WARNING: TEST DISABLED FOR X86"; \