Closed JaapWijnen closed 1 year ago
Try something like eg. (From mobile to the best of my memory but should give a hint - let me know if it helps):
Case sensitive contains "mystuff":
.*mystuff.*
Beginning with xxx:
xxx.*
Suffix of PERF
.*PERF
Any five chars followed by "suffix":
.....suffix
Basically it's the standard new regex specified by swift - there's tons of flexibility you can find some more examples from links here:
You want to put it within quotes too of course:
".*SUFFIX"
swift package benchmark --filter ".*autoresizing"
is a concrete example...
Perfect! Thanks a lot
Would you have some regex examples to use with for example a skip filter? I think I'm missing something here, can't get that flag to work for me