File tree 1 file changed +6
-0
lines changed
src/tools/run-make-support/src
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 3
3
//! notably is built via cargo: this means that if your test wants some non-trivial utility, such
4
4
//! as `object` or `wasmparser`, they can be re-exported and be made available through this library.
5
5
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
+
6
10
mod command;
7
11
mod macros;
8
12
mod util;
@@ -18,6 +22,8 @@ pub mod scoped_run;
18
22
pub mod string;
19
23
pub mod targets;
20
24
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;`.
21
27
mod fs;
22
28
23
29
/// [`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