Replies: 1 comment
-
List harnessesFor normal rs file: list path/to/single.rs
autoharness -Z autoharness --list path/to/single.rsFor verify-rust-std: list --std path/to/library
autoharness -Z autoharness --list --std path/to/libraryThese list commands will print harnesses if any:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Basic check commands
Filtering
--harnessIf specified, only run harnesses that match this filter. This option can be provided multiple times, which will run all tests matchi
ng any of the filters. If used with --exact, the harness filter will only match the exact fully qualified name of a harness
But to filter autoharnesses, we should use
--include-pattern regexor--exclude-patterninstead: docBeta Was this translation helpful? Give feedback.
All reactions