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

// should not be matched
procedure trivialFooZZX()
{
    assert false;
}

procedure trivialFooZZZ()
{
    assert true;
}

procedure trivialBarZZZ()
{
    assert true;
}