File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/tools/run-make-support/src Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 33//! notably is built via cargo: this means that if your test wants some non-trivial utility, such
44//! as `object` or `wasmparser`, they can be re-exported and be made available through this library.
55
6+ // We want to control use declaration ordering and spacing (and preserve use group comments), so
7+ // skip rustfmt on this file.
8+ #![ cfg_attr( rustfmt, rustfmt:: skip) ]
9+
610mod command;
711mod macros;
812mod util;
@@ -18,6 +22,8 @@ pub mod scoped_run;
1822pub mod string;
1923pub mod targets;
2024
25+ // Internally we call our fs-related support module as `fs`, but re-export its content as `rfs`
26+ // to tests to avoid colliding with commonly used `use std::fs;`.
2127mod fs;
2228
2329/// [`std::fs`] wrappers and assorted filesystem-related helpers. Public to tests as `rfs` to not be
You can’t perform that action at this time.
0 commit comments