Skip to content

Commit

Permalink
Fix test that expected old behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
atomb committed Apr 8, 2024
1 parent df9599b commit 06e4b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Test/test2/Rlimitouts0.bpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// We use boogie here because parallel-boogie doesn't work well with -proverLog
// RUN: %boogie -rlimit:800000 -proverLog:"%t.smt2" "%s"
// RUN: %OutputCheck --file-to-check "%t.smt2" "%s"
// CHECK-L: (set-option :timeout 0)
// CHECK-L: (set-option :timeout 4000)
// CHECK-L: (set-option :rlimit 800000)
// CHECK-L: (set-option :timeout 0)
// CHECK-L: (set-option :rlimit 900000)
Expand All @@ -11,7 +11,7 @@
// Depends on all output going to a single file, so incompatible with
// batch mode.
// UNSUPPORTED: batch_mode
procedure {:timeLimit 4} /* timeLimit overridden by rlimit */ TestTimeouts0(in: [int]int, len: int) returns (out: [int]int)
procedure {:timeLimit 4} TestTimeouts0(in: [int]int, len: int) returns (out: [int]int)
requires in[0] == 0 && (forall i: int :: 0 <= i ==> in[i + 1] == in[i] + 1);
requires 0 < len;
ensures (forall j: int :: 0 <= j && j < len ==> out[j] == j);
Expand Down

0 comments on commit 06e4b03

Please sign in to comment.