summaryrefslogtreecommitdiffstats
path: root/jack-tests/tests/com/android/jack/debug/test002
diff options
context:
space:
mode:
Diffstat (limited to 'jack-tests/tests/com/android/jack/debug/test002')
-rw-r--r--jack-tests/tests/com/android/jack/debug/test002/dx/Tests.java31
-rw-r--r--jack-tests/tests/com/android/jack/debug/test002/jack/Debug002.java43
2 files changed, 74 insertions, 0 deletions
diff --git a/jack-tests/tests/com/android/jack/debug/test002/dx/Tests.java b/jack-tests/tests/com/android/jack/debug/test002/dx/Tests.java
new file mode 100644
index 0000000..259d97f
--- /dev/null
+++ b/jack-tests/tests/com/android/jack/debug/test002/dx/Tests.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2012 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.
+ */
+
+package com.android.jack.debug.test002.dx;
+
+import com.android.jack.debug.test002.jack.Debug002;
+
+import org.junit.Test;
+
+public class Tests {
+
+ @Test
+ public void test001() {
+ Debug002.staticM(24);
+ new Debug002().instance(56);
+ }
+
+}
diff --git a/jack-tests/tests/com/android/jack/debug/test002/jack/Debug002.java b/jack-tests/tests/com/android/jack/debug/test002/jack/Debug002.java
new file mode 100644
index 0000000..fd2b14e
--- /dev/null
+++ b/jack-tests/tests/com/android/jack/debug/test002/jack/Debug002.java
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2012 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.
+ */
+
+package com.android.jack.debug.test002.jack;
+
+public class Debug002 {
+
+ public static int staticM(int arg) {
+ int lv1 = 4;
+ lv1 = incM(lv1);
+ lv1 += arg;
+ return lv1;
+ }
+
+ public int instance(int arg) {
+ int lv1 = 4;
+ inc(lv1);
+ lv1 += arg;
+ return lv1;
+ }
+
+ public static int incM(int i) {
+ return i++;
+ }
+
+ public int inc(int i) {
+ return i++;
+ }
+
+}