diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/800-smali/expected.txt | 1 | ||||
| -rw-r--r-- | test/800-smali/smali/b_27148248.smali | 27 | ||||
| -rw-r--r-- | test/800-smali/src/Main.java | 2 |
3 files changed, 30 insertions, 0 deletions
diff --git a/test/800-smali/expected.txt b/test/800-smali/expected.txt index 73ce3073ce..edbb7b52a5 100644 --- a/test/800-smali/expected.txt +++ b/test/800-smali/expected.txt @@ -58,4 +58,5 @@ b/26594149 (5) b/26594149 (6) b/26594149 (7) b/26594149 (8) +b/27148248 Done! diff --git a/test/800-smali/smali/b_27148248.smali b/test/800-smali/smali/b_27148248.smali new file mode 100644 index 0000000000..4601cc6931 --- /dev/null +++ b/test/800-smali/smali/b_27148248.smali @@ -0,0 +1,27 @@ +# 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. + +.class public LB27148248; + +# Regression for dex2oatd crash during compilation of method which +# used to throw with argument of non-reference type. + +.super Ljava/lang/Object; + +.method public static run()V + .registers 1 + const v0, 0xbad + throw v0 +.end method + diff --git a/test/800-smali/src/Main.java b/test/800-smali/src/Main.java index b0eff5d0bd..2ea3367ac3 100644 --- a/test/800-smali/src/Main.java +++ b/test/800-smali/src/Main.java @@ -160,6 +160,8 @@ public class Main { null)); testCases.add(new TestCase("b/26594149 (8)", "B26594149_8", "run", null, new VerifyError(), null)); + testCases.add(new TestCase("b/27148248", "B27148248", "run", null, new VerifyError(), + null)); } public void runTests() { |