Currently the following will not skip any tests on Windows even though the test path exists
./x test ui --skip tests/ui/traits/fn-pointer/bare-fn-no-impl-fn-ptr-99875.rs
This is because of using / instead of \ for the path separators. Ideally bootstrap should handle this.
Additionally it would be nice if --skip errored (or at least warned) if the given path didn't match anything.
Currently the following will not skip any tests on Windows even though the test path exists
This is because of using
/instead of\for the path separators. Ideally bootstrap should handle this.Additionally it would be nice if
--skiperrored (or at least warned) if the given path didn't match anything.