blob: 12368668606c32aa00244b041f1d0c1adc6b3940 [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.debug;
import java.util.Map;
import org.apache.harmony.jpda.tests.framework.jdwp.Value;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
public class ContinuousSteppingTest extends DebugTestBase {
private static DebugTestConfig config;
@BeforeClass
public static void setup() {
config = new D8DebugTestResourcesConfig(temp);
}
@Test
public void testArithmetic() throws Throwable {
runContinuousTest("Arithmetic");
}
@Test
public void testLocals() throws Throwable {
runContinuousTest("Locals");
}
private void runContinuousTest(String debuggeeClassName) throws Throwable {
runDebugTest(
config,
debuggeeClassName,
breakpoint(debuggeeClassName, "main"),
run(),
stepUntil(StepKind.OVER, StepLevel.INSTRUCTION, debuggeeState -> {
// Fetch local variables.
Map<String, Value> localValues = debuggeeState.getLocalValues();
Assert.assertNotNull(localValues);
// Always step until we actually exit the program.
return false;
}));
}
}