diff options
author | 2023-06-14 15:18:26 +0000 | |
---|---|---|
committer | 2023-06-21 09:25:55 +0000 | |
commit | c09acc0b9e8bb0c52effb2ab4ec68d504995b2ac (patch) | |
tree | 4d37b80493f7285fdb92ade4424f5e8e0993e677 /compiler/jni/jni_compiler_test.cc | |
parent | 4bf7a0e4e4ba1a8d8dafbf2495c4d3515660777a (diff) |
riscv64: Implement `art_jni_dlsym_lookup_critical_stub`.
Test: run-gtests.sh
Bug: 283082089
Change-Id: I96c7ff79278f7563c1c2cbc10258f6862fc27111
Diffstat (limited to 'compiler/jni/jni_compiler_test.cc')
-rw-r--r-- | compiler/jni/jni_compiler_test.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index 7feb400db7..93dd715286 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -735,11 +735,6 @@ void JniCompilerTest::CompileAndRunIntMethodThroughStubImpl() { JNI_TEST(CompileAndRunIntMethodThroughStub) void JniCompilerTest::CompileAndRunStaticIntMethodThroughStubImpl() { - if (!check_generic_jni_) { - // TODO(riscv64): Implement `art_jni_dlsym_lookup_critical_stub`. - TEST_DISABLED_FOR_RISCV64(); - } - SetUpForTest(true, "sbar", "(I)I", nullptr); // calling through stub will link with &Java_MyClassNatives_sbar{,_1Fast,_1Critical} @@ -2154,11 +2149,6 @@ void JniCompilerTest::WithoutImplementationRefReturnImpl() { JNI_TEST(WithoutImplementationRefReturn) void JniCompilerTest::StaticWithoutImplementationImpl() { - if (!check_generic_jni_) { - // TODO(riscv64): Implement `art_jni_dlsym_lookup_critical_stub`. - TEST_DISABLED_FOR_RISCV64(); - } - // This will lead to error messages in the log. ScopedLogSeverity sls(LogSeverity::FATAL); |