diff options
Diffstat (limited to 'testscript')
| -rwxr-xr-x | testscript/main.py | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/testscript/main.py b/testscript/main.py index 1015b21..285f993 100755 --- a/testscript/main.py +++ b/testscript/main.py @@ -24,6 +24,20 @@ cgrep_test_args = [          "--struct --regex [sS]truct ./test/main.cpp",          "--dir ./ --regex run --func",] +cgrep_test_args_2 = [ +        "--regex test --func", +        "--regex test --fielddecl", +        "--regex test --memfunc", +        "--regex test --var", +        "--regex test --class", +        "--regex test --struct", +        "--regex test --union", +        "--regex test --nameddecl", +        "--regex test --declrefexpr", +        "--regex test --call", +        "--regex test --cxxcall", +        "--regex test --", +        ]  class Argparser(object):      def __init__(self): | 
