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
With an alternate syntax going through the shell could be avoided for the bench'ed command. The pre-split argument list could be embedded in the bench invocation's argument list. Two possible styles:
bench foo -exec cmd arg1 ... ; bar baz
bench foo bar baz -- cmd arg1 ...
The text was updated successfully, but these errors were encountered:
The main reason I don't do this is that it's very difficult to separate the command's flags from the bench command's flags, especially now that bench supports benchmarking multiple commands
With an alternate syntax going through the shell could be avoided for the bench'ed command. The pre-split argument list could be embedded in the bench invocation's argument list. Two possible styles:
The text was updated successfully, but these errors were encountered: