blob: 5e95a1e993e91656b668cca858e2c32f8e5f9e3e [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.classmerging.horizontal;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertFalse;
import com.android.tools.r8.NeverClassInline;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.NoVerticalClassMerging;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import com.android.tools.r8.utils.codeinspector.MethodSubject;
import org.junit.Test;
import org.junit.runners.Parameterized;
public class NonFinalOverrideOfFinalMethodNonTrivialMergeTest
extends HorizontalClassMergingTestBase {
@Parameterized.Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
public NonFinalOverrideOfFinalMethodNonTrivialMergeTest(TestParameters parameters) {
super(parameters);
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.addInnerClasses(getClass())
.addKeepMainRule(Main.class)
.enableInliningAnnotations()
.enableNeverClassInliningAnnotations()
.enableNoVerticalClassMergingAnnotations()
.setMinApi(parameters.getApiLevel())
.addHorizontallyMergedClassesInspector(
inspector -> inspector.assertIsCompleteMergeGroup(A.class, B.class, C.class))
.compile()
.inspect(
inspector -> {
ClassSubject classSubject = inspector.clazz(A.class);
assertThat(classSubject, isPresent());
MethodSubject methodSubject = classSubject.uniqueMethodWithName("foo$bridge");
assertThat(methodSubject, isPresent());
assertFalse(methodSubject.isFinal());
})
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines("A", "B", "C", "CSub");
}
public static class Main {
public static void main(String[] args) {
new A().foo();
new B().foo();
new C().bar();
new CSub().foo();
}
}
@NeverClassInline
public static class A {
@NeverInline
public final void foo() {
System.out.println("A");
}
}
@NeverClassInline
public static class B {
@NeverInline
public final void foo() {
System.out.println("B");
}
}
@NeverClassInline
@NoVerticalClassMerging
public static class C {
@NeverInline
public void bar() {
System.out.println("C");
}
}
@NeverClassInline
public static class CSub extends C {
@NeverInline
public void foo() {
System.out.println("CSub");
}
}
}