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
This will run the test suite of the standard library of your current toolchain.
23
18
It will probably take 1-2h, so if you have specific parts of the standard library you want to test, use the usual `cargo test` filter mechanisms to narrow this down:
24
19
all arguments are passed to `cargo test`, so arguments after `--` are passed to the test runner as usual.
25
-
Doc tests have to be run separately as there are some (expected) memory leaks.
20
+
Isolation is disabled as even in `core`, some doctests use file system accesses for demonstration purposes.
26
21
For `std`, we cannot run *all* tests since they will use networking and file system APIs that we do not support.
27
22
28
23
If you are working on the standard library and want to check that the tests pass with your modifications, set `MIRI_LIB_SRC` to the `library` folder of the checkout you are working in:
0 commit comments