summaryrefslogtreecommitdiff
path: root/Test/commandline/multiple_procs_verify_one_request_twice.bpl
blob: fe9c44bab8173b01876a9a0d5f48626215f32c9b (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;
}