Skip to content

Commit

Permalink
[Truffle] Don't test for broken things in the TCK.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Jan 3, 2017
1 parent 0709dd9 commit acb3b9c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions truffle/src/test/java/org/jruby/truffle/tck/RubyDebugTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,6 @@ public void stepInStepOver() throws Throwable {
"n", "2", "nMinusOne", "1",
"nMOFact", "1",
"res", "nil");
stepOut();
assertLocation(23, "res = fac(2)" + System.lineSeparator()
+ " puts res" + System.lineSeparator() // wrong!?
+ " res", // wrong!?
"res", "2");

continueExecution();

// Init before eval:
Expand Down Expand Up @@ -187,10 +181,6 @@ private void stepOver(final int size) {
run.addLast(() -> suspendedEvent.prepareStepOver(size));
}

private void stepOut() {
run.addLast(() -> suspendedEvent.prepareStepOut());
}

private void continueExecution() {
run.addLast(() -> suspendedEvent.prepareContinue());
}
Expand Down

0 comments on commit acb3b9c

Please sign in to comment.