summaryrefslogtreecommitdiff
path: root/Test/commandline/multiple_procs_verify_two_asterisk_wildcard_begin.bpl
blob: 0f6571bafaafa446dffdfb634cbb9de43db956e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %boogie "-proc:*Bar" "%s" > "%t"
// RUN: %OutputCheck --file-to-check "%t" "%s"
// CHECK-L: Boogie program verifier finished with 2 verified, 0 errors
procedure foo()
{
    assert false;
}

procedure translucentBar()
{
    assert true;
}

procedure opaqueBar()
{
    assert true;
}