summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-06-15 13:58:00 +0100
committer Nicolas Geoffray <ngeoffray@google.com> 2015-06-15 14:00:26 +0100
commita1924e7042bafdc23a62994f5749e651e35038da (patch)
treef22aa817edf01968e23eff9df6f78d673cc5ad50
parentc4977a58b1feca22a83fd5239aa266c7ce16ab87 (diff)
Move Level1 to its own file.
When we don't have oat files, we use runtime semantics for checking access. At runtime, we're checking whether the class loader is the same between two classes. This is information we don't have when we run dex2oat at install time. So movining Level1 to a public class fixes the access issue when running the test with --no-prebuild --no-dex2oat. Change-Id: Ied1f33a9e651f0045501c939eaf94b7b34ba1e66
-rw-r--r--test/497-inlining-and-class-loader/expected.txt10
-rw-r--r--test/497-inlining-and-class-loader/src/Level1.java27
-rw-r--r--test/497-inlining-and-class-loader/src/Main.java12
3 files changed, 32 insertions, 17 deletions
diff --git a/test/497-inlining-and-class-loader/expected.txt b/test/497-inlining-and-class-loader/expected.txt
index 18d2f2da12..3e1d85e309 100644
--- a/test/497-inlining-and-class-loader/expected.txt
+++ b/test/497-inlining-and-class-loader/expected.txt
@@ -1,7 +1,7 @@
java.lang.Exception
- at Main.$noinline$bar(Main.java:139)
- at Level2.$inline$bar(Main.java:88)
- at Level1.$inline$bar(Main.java:82)
- at LoadedByMyClassLoader.bar(Main.java:94)
+ at Main.$noinline$bar(Main.java:127)
+ at Level2.$inline$bar(Level1.java:25)
+ at Level1.$inline$bar(Level1.java:19)
+ at LoadedByMyClassLoader.bar(Main.java:82)
at java.lang.reflect.Method.invoke(Native Method)
- at Main.main(Main.java:113)
+ at Main.main(Main.java:101)
diff --git a/test/497-inlining-and-class-loader/src/Level1.java b/test/497-inlining-and-class-loader/src/Level1.java
new file mode 100644
index 0000000000..977af8321e
--- /dev/null
+++ b/test/497-inlining-and-class-loader/src/Level1.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+public class Level1 {
+ public static void $inline$bar() {
+ Level2.$inline$bar();
+ }
+}
+
+class Level2 {
+ public static void $inline$bar() {
+ Main.$noinline$bar();
+ }
+}
diff --git a/test/497-inlining-and-class-loader/src/Main.java b/test/497-inlining-and-class-loader/src/Main.java
index bb8da6d3a0..0f7eb599cb 100644
--- a/test/497-inlining-and-class-loader/src/Main.java
+++ b/test/497-inlining-and-class-loader/src/Main.java
@@ -77,18 +77,6 @@ class MyClassLoader extends ClassLoader {
}
}
-class Level1 {
- public static void $inline$bar() {
- Level2.$inline$bar();
- }
-}
-
-class Level2 {
- public static void $inline$bar() {
- Main.$noinline$bar();
- }
-}
-
class LoadedByMyClassLoader {
public static void bar() {
Level1.$inline$bar();