blob: cdc5b63d085f0f7e0559a78a523fc367b28c9c58 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.jasmin;
import com.android.tools.r8.D8TestRunResult;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.ToolHelper.DexVm.Version;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class Regress65007724 extends JasminTestBase {
private final TestParameters parameters;
public Regress65007724(TestParameters parameters) {
this.parameters = parameters;
}
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withDexRuntimes().withAllApiLevels().build();
}
@Test
public void testThat16BitsIndexAreAllowed() throws Exception {
JasminBuilder builder = new JasminBuilder();
for (int i = 0; i < 35000; i++) {
builder.addClass("C" + i);
}
JasminBuilder.ClassBuilder clazz = builder.addClass("Test");
clazz.addStaticField("f", "LC34000;", null);
clazz.addMainMethod(
".limit stack 2",
".limit locals 1",
"getstatic java/lang/System/out Ljava/io/PrintStream;",
"ldc \"Hello World!\"",
"invokevirtual java/io/PrintStream/print(Ljava/lang/String;)V",
"return");
D8TestRunResult d8TestRunResult =
testForD8(parameters.getBackend())
.setMinApi(parameters.getApiLevel())
.addProgramClassFileData(builder.buildClasses())
.run(parameters.getRuntime(), clazz.name);
if (parameters.getDexRuntimeVersion().isEqualTo(Version.V13_MASTER)) {
// See b/220821265
d8TestRunResult.assertFailure();
} else {
d8TestRunResult.assertSuccessWithOutput("Hello World!");
}
}
}