Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
152c851
Make forward compatibility lint deprecated_cfg_attr_crate_type_name d…
est31 Jul 26, 2022
8998024
Correct test-args to compiletest on Windows
czzrr Aug 19, 2022
6a1f7af
Use direct pointer to filter_dirs function
est31 Aug 23, 2022
0a6af98
Simplify unicode_downloads.rs
est31 Aug 23, 2022
754b3e7
Change hint to correct path
est31 Aug 23, 2022
a788650
Remove some documentation duplicated between `writeln!` and `write!`
joshtriplett Aug 24, 2022
3c8618f
Update `write!` docs: can now import traits as `_` to avoid conflicts
joshtriplett Aug 24, 2022
589db1f
Expand example to show how to implement qualified trait names
joshtriplett Aug 24, 2022
ae937cc
Clarify comment to fit `as _` better
joshtriplett Aug 24, 2022
ad93272
Stabilize `const_ptr_offset_from`.
fee1-dead Apr 20, 2022
69ad634
Do not include `const_ptr_sub_ptr` in this stabilization
fee1-dead May 12, 2022
e7b7f88
rustdoc: omit start/end tags for empty item description blocks
notriddle Aug 26, 2022
832fd23
rustdoc: remove unused CSS for `hidden-by-*-hider`
notriddle Aug 26, 2022
25eb52f
rustdoc: remove incorrect CSS selector `.impl-items table td`
notriddle Aug 26, 2022
20012ea
Merge implementations of HIR fn_decl and fn_sig.
cjgillot Aug 22, 2022
52582d3
rustdoc: remove empty extern_crates and type="text/javascript" on script
notriddle Aug 26, 2022
a74f453
Merge duplicated CSS rules
GuillaumeGomez Aug 26, 2022
539e408
Rollup merge of #96240 - fee1-dead-contrib:stabilize_const_offset_fro…
JohnTitor Aug 27, 2022
134cc2d
Rollup merge of #99784 - est31:deny_cfg_attr_crate_type_name, r=Mark-…
JohnTitor Aug 27, 2022
7214f0c
Rollup merge of #100811 - czzrr:master, r=Mark-Simulacrum
JohnTitor Aug 27, 2022
e31bedc
Rollup merge of #100924 - est31:closure_to_fn_ptr, r=Mark-Simulacrum
JohnTitor Aug 27, 2022
f4d4a40
Rollup merge of #100953 - joshtriplett:write-docs, r=Mark-Simulacrum
JohnTitor Aug 27, 2022
6ccad25
Rollup merge of #101018 - notriddle:notriddle/item-right-docblock-sho…
JohnTitor Aug 27, 2022
84f5ccd
Rollup merge of #101044 - notriddle:notriddle/css-hidden-by, r=jsha
JohnTitor Aug 27, 2022
0cad274
Rollup merge of #101046 - notriddle:notriddle/table-css, r=jsha
JohnTitor Aug 27, 2022
aa6b750
Rollup merge of #101057 - cjgillot:one-fn-sig, r=compiler-errors
JohnTitor Aug 27, 2022
bdbbbe6
Rollup merge of #101062 - notriddle:notriddle/text-javascript, r=Guil…
JohnTitor Aug 27, 2022
bd89372
Rollup merge of #101063 - GuillaumeGomez:merge-duplicated-css, r=notr…
JohnTitor Aug 27, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,15 @@ note: if you're sure you want to do this, please open an issue as to why. In the

test_args.append(&mut builder.config.cmd.test_args());

cmd.args(&test_args);
// On Windows, replace forward slashes in test-args by backslashes
// so the correct filters are passed to libtest
if cfg!(windows) {
let test_args_win: Vec<String> =
test_args.iter().map(|s| s.replace("/", "\\")).collect();
cmd.args(&test_args_win);
} else {
cmd.args(&test_args);
}

if builder.is_verbose() {
cmd.arg("--verbose");
Expand Down