summaryrefslogtreecommitdiff
path: root/test/904-object-allocation/src
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-04-07 09:36:06 -0700
committer Andreas Gampe <agampe@google.com> 2017-04-07 09:47:24 -0700
commit3ea3d5ca4420c98a3de51f638d3222c6696bc3e6 (patch)
tree310a5616d5d0ed2571dca8ddf0505db8ea8112e5 /test/904-object-allocation/src
parenta8380240c8c9752c8b43926f677adcac11c2f52f (diff)
ART: More refactor for JVMTI run tests (3/3)
Add missing Main classes. Bug: 32072923 Test: m test-art-host Change-Id: I600dd5563e44604bd7b61c7d381f0a7d92db278a
Diffstat (limited to 'test/904-object-allocation/src')
-rw-r--r--test/904-object-allocation/src/Main.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/904-object-allocation/src/Main.java b/test/904-object-allocation/src/Main.java
new file mode 100644
index 0000000000..0affe7cf19
--- /dev/null
+++ b/test/904-object-allocation/src/Main.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2016 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 Main {
+ public static void main(String[] args) throws Exception {
+ art.Test904.run();
+ }
+}