summaryrefslogtreecommitdiff
path: root/Test/commandline/multiple_procs_verify_four_asterisk_wildcard.bpl
blob: e0f8eef35d1a433112b38ee2056683913986c480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// RUN: %boogie "-proc:*Bar" "-proc:*Foo" "%s" > "%t"
// RUN: %OutputCheck --file-to-check "%t" "%s"
// CHECK-L: Boogie program verifier finished with 4 verified, 0 errors

procedure foo()
{
    assert false;
}

procedure helpfulFoo()
{
    assert true;
}

procedure Foo()
{
    assert true;
}

procedure translucentBar()
{
    assert true;
}

procedure opaqueBar()
{
    assert true;
}