From fc5e2ef08c78bcf4a60c5097ff3a7fa80e358522 Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Fri, 8 May 2020 00:08:42 +0000 Subject: 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 --- runtime/proxy_test.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'runtime/proxy_test.h') 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 GenerateProxyClass(ScopedObjectAccess& soa, - jobject jclass_loader, - ClassLinker* class_linker, - const char* className, - const std::vector>& interfaces) +ObjPtr GenerateProxyClass(ScopedObjectAccess& soa, + jobject jclass_loader, + ClassLinker* class_linker, + const char* className, + const std::vector>& interfaces) REQUIRES_SHARED(Locks::mutator_lock_) { StackHandleScope<1> hs(soa.Self()); Handle javaLangObject = hs.NewHandle(GetClassRoot()); -- cgit v1.2.3-59-g8ed1b