blob: 3e587949f0ddc5026242980264284ffb8857d8cc [file] [log] [blame]
// Copyright (c) 2021, 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.ir.optimize.nonnull;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public class NullCheckWithCatchHandlerTest extends TestBase {
private final TestParameters parameters;
@Parameterized.Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
public NullCheckWithCatchHandlerTest(TestParameters parameters) {
this.parameters = parameters;
}
@Test
public void test() throws Exception {
testForR8(parameters.getBackend())
.addProgramClasses(Main.class)
.addKeepMainRule(Main.class)
.setMinApi(parameters.getApiLevel())
.compile()
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithEmptyOutput();
}
static class Main {
public static void main(String[] args) {
Object alwaysNull = System.currentTimeMillis() > 0 ? null : new Object();
notNullCheck(alwaysNull);
if (alwaysNull != null) {
System.out.println(alwaysNull.toString());
}
}
private static void notNullCheck(Object o) {
try {
o.getClass();
} catch (Throwable e) {
}
}
}
}