diff options
author | 2020-05-08 00:08:42 +0000 | |
---|---|---|
committer | 2020-05-08 07:25:07 +0000 | |
commit | fc5e2ef08c78bcf4a60c5097ff3a7fa80e358522 (patch) | |
tree | 4c1d538f5faf72617e9088b8f99a368b999b32dd /runtime/proxy_test.h | |
parent | 685c84775f7dfe23197b080e4730435fd80e6d27 (diff) |
Revert "Remove test_per_src from ART tests."
This reverts commit 8103e479d8f8447584582b2b70752029f7087776.
Reason for revert: asan run fails in multiple ways
Test: ran ./art/test/testrunner/run_build_test_target.py art-gtest-asan
Change-Id: Ib9f2887436a664b64c6410f56a25ae2dd0e0aab4
Diffstat (limited to 'runtime/proxy_test.h')
-rw-r--r-- | runtime/proxy_test.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/proxy_test.h b/runtime/proxy_test.h index 266c0cf8d4..bdd902f9f2 100644 --- a/runtime/proxy_test.h +++ b/runtime/proxy_test.h @@ -33,11 +33,11 @@ namespace proxy_test { // Generate a proxy class with the given name and interfaces. This is a simplification from what // libcore does to fit to our test needs. We do not check for duplicated interfaces or methods and // we do not declare exceptions. -inline ObjPtr<mirror::Class> GenerateProxyClass(ScopedObjectAccess& soa, - jobject jclass_loader, - ClassLinker* class_linker, - const char* className, - const std::vector<Handle<mirror::Class>>& interfaces) +ObjPtr<mirror::Class> GenerateProxyClass(ScopedObjectAccess& soa, + jobject jclass_loader, + ClassLinker* class_linker, + const char* className, + const std::vector<Handle<mirror::Class>>& interfaces) REQUIRES_SHARED(Locks::mutator_lock_) { StackHandleScope<1> hs(soa.Self()); Handle<mirror::Class> javaLangObject = hs.NewHandle(GetClassRoot<mirror::Object>()); |