summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorGravatar Dan Liew <daniel.liew@imperial.ac.uk>2015-10-31 08:52:02 +0000
committerGravatar Dan Liew <daniel.liew@imperial.ac.uk>2015-10-31 08:52:02 +0000
commit8d1864f189552068d22f174b6eeaee202568de36 (patch)
tree21d496209a5225d6b6b1bbb656e6e5982b4e1e42 /Source
parent12c5ff0211e844156706f8e617c94ab221c1b456 (diff)
Document the new behaviour of the ``-proc:`` command line option
in the output of Boogie's help.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/CommandLineOptions.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index d7644915..3892bbc0 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -1858,7 +1858,15 @@ namespace Microsoft.Boogie {
Multiple .bpl files supplied on the command line are concatenated into one
Boogie program.
- /proc:<p> : limits which procedures to check
+ /proc:<p> : Only check procedures matched by pattern <p>. This option
+ may be specified multiple times to match multiple patterns.
+ The pattern <p> matches the whole procedure name (i.e.
+ pattern ""foo"" will only match a procedure called foo and
+ not fooBar). The pattern <p> may contain * wildcards which
+ match any character zero or more times. For example the
+ pattern ""ab*d"" would match abd, abcd and abccd but not
+ Aabd nor abdD. The pattern ""*ab*d*"" would match abd,
+ abcd, abccd, Abd and abdD.
/noResolve : parse only
/noTypecheck : parse and resolve only