You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently they do substring matching. But because some benchmarks have a
name that is a substring of another it's impossible to match some
benchmarks by themselves. E.g.:
- Want `webrender`? You'll get `webrender-wrench` too.
- Want `syn`? You'll get `deeply-nested-async` too.
- Want `deeply-nested`? You'll get `deeply-nested-async` and
`deeply-nested-closures` too.
This commit makes the matching exact. As a heavy user of these tools I
think this is a good trade-off. It makes some things possible that are
currently impossible (e.g. including or excluding just `webrender`), at
the cost of more typing on occasion, e.g. `--include ctfe-stress-4`
instead of `--include ctfe`.
(Note: if you specify something that doesn't match any benchmark's name
the command will give an error.)
0 commit comments