blob: 564902a6a4293bc8bd9d8ca2ae03d040f1313303 [file] [log] [blame]
// Copyright (c) 2018, 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.shaking.examples;
import static org.junit.Assert.assertFalse;
import com.android.tools.r8.shaking.TreeShakingTest;
import com.android.tools.r8.utils.codeinspector.CodeInspector;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
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 TreeShaking18Test extends TreeShakingTest {
@Parameters(name = "mode:{0}-{1} minify:{2}")
public static Collection<Object[]> data() {
List<Object[]> parameters = new ArrayList<>();
for (MinifyMode minify : MinifyMode.values()) {
parameters.add(new Object[] {Frontend.JAR, Backend.CF, minify});
parameters.add(new Object[] {Frontend.JAR, Backend.DEX, minify});
parameters.add(new Object[] {Frontend.DEX, Backend.DEX, minify});
}
return parameters;
}
public TreeShaking18Test(Frontend frontend, Backend backend, MinifyMode minify) {
super("examples/shaking18", "shaking18.Shaking", frontend, backend, minify);
}
@Test
public void test() throws Exception {
runTest(
TreeShaking18Test::unusedRemoved,
null,
null,
ImmutableList.of("src/test/examples/shaking18/keep-rules.txt"),
options -> {
// TODO(b/125282093): Remove options modification once landed.
assert !options.enableValuePropagationForInstanceFields;
options.enableValuePropagationForInstanceFields = true;
});
}
private static void unusedRemoved(CodeInspector inspector) {
assertFalse(
"DerivedUnused should be removed", inspector.clazz("shaking18.DerivedUnused").isPresent());
}
}