blob: 405c49395b1b697304a646dc22264558caf32d4c [file] [log] [blame]
// Copyright (c) 2020, 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.repackage;
import com.android.tools.r8.NeverClassInline;
import com.android.tools.r8.TestParameters;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public class RepackageWithPackagePrivateLibrarySuperTest extends RepackageTestBase {
private final String[] EXPECTED = new String[] {"Library::foo"};
public RepackageWithPackagePrivateLibrarySuperTest(
String flattenPackageHierarchyOrRepackageClasses, TestParameters parameters) {
super(flattenPackageHierarchyOrRepackageClasses, parameters);
}
@Test
public void testRuntime() throws Exception {
testForRuntime(parameters)
.addLibraryClasses(Library.class)
.addProgramClasses(Program.class, Main.class)
.addRunClasspathFiles(buildOnDexRuntime(parameters, Library.class))
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines(EXPECTED);
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.addLibraryClasses(Library.class)
.addDefaultRuntimeLibrary(parameters)
.addProgramClasses(Program.class, Main.class)
.apply(this::configureRepackaging)
.addKeepMainRule(Main.class)
.setMinApi(parameters.getApiLevel())
.enableNeverClassInliningAnnotations()
.compile()
.addRunClasspathFiles(buildOnDexRuntime(parameters, Library.class))
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines(EXPECTED);
}
public static class Library {
void foo() {
System.out.println("Library::foo");
}
}
@NeverClassInline
public static class Program extends Library {
void callFoo() {
super.foo();
}
}
public static class Main {
public static void main(String[] args) {
new Program().callFoo();
}
}
}