summaryrefslogtreecommitdiff
path: root/Test/commandline/multiple_procs_verify_one_request_twice.bpl
blob: 7c6ee34ee35d9bfdd297c56e68aad8658f96c065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %boogie -proc:foo -proc:foo "%s" > "%t"
// RUN: %OutputCheck --file-to-check "%t" "%s"
// CHECK-L: Boogie program verifier finished with 1 verified, 0 errors

// Although the command line requests two verify this procedure twice we should
// only do try once.
procedure foo()
{
    assume true;
}

procedure bar()
{
    assert false;
}

procedure baz()
{
    assert false;
}