Skip to content

Commit 92280dc

Browse files
committed
---
yaml --- r: 129786 b: refs/heads/auto c: 7b31058 h: refs/heads/master v: v3
1 parent 424d1b6 commit 92280dc

File tree

388 files changed

+4312
-7862
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+4312
-7862
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: 2e92c67dc0318a52fe42c3c0bca408f76c7feb61
16+
refs/heads/auto: 7b31058873b69883ece4ae3da6725f54a26f58f0
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ DEPS_test := std getopts serialize rbml term time regex native:rust_test_helpers
9696
DEPS_time := std serialize
9797
DEPS_rand := core
9898
DEPS_url := std
99-
DEPS_log := std regex
99+
DEPS_log := std
100100
DEPS_regex := std
101101
DEPS_regex_macros = rustc syntax std regex
102102
DEPS_fmt_macros = std

branches/auto/src/compiletest/procsrv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub fn run(lib_path: &str,
4747
match cmd.spawn() {
4848
Ok(mut process) => {
4949
for input in input.iter() {
50-
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
50+
process.stdin.get_mut_ref().write(input.as_bytes()).unwrap();
5151
}
5252
let ProcessOutput { status, output, error } =
5353
process.wait_with_output().unwrap();
@@ -79,7 +79,7 @@ pub fn run_background(lib_path: &str,
7979
match cmd.spawn() {
8080
Ok(mut process) => {
8181
for input in input.iter() {
82-
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
82+
process.stdin.get_mut_ref().write(input.as_bytes()).unwrap();
8383
}
8484

8585
Some(process)

branches/auto/src/compiletest/runtest.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ fn compile_cc_with_clang_and_save_bitcode(config: &Config, _props: &TestProps,
15261526
let testcc = testfile.with_extension("cc");
15271527
let proc_args = ProcArgs {
15281528
// FIXME (#9639): This needs to handle non-utf8 paths
1529-
prog: config.clang_path.as_ref().unwrap().as_str().unwrap().to_string(),
1529+
prog: config.clang_path.get_ref().as_str().unwrap().to_string(),
15301530
args: vec!("-c".to_string(),
15311531
"-emit-llvm".to_string(),
15321532
"-o".to_string(),
@@ -1542,7 +1542,7 @@ fn extract_function_from_bitcode(config: &Config, _props: &TestProps,
15421542
let bitcodefile = output_base_name(config, testfile).with_extension("bc");
15431543
let bitcodefile = append_suffix_to_stem(&bitcodefile, suffix);
15441544
let extracted_bc = append_suffix_to_stem(&bitcodefile, "extract");
1545-
let prog = config.llvm_bin_path.as_ref().unwrap().join("llvm-extract");
1545+
let prog = config.llvm_bin_path.get_ref().join("llvm-extract");
15461546
let proc_args = ProcArgs {
15471547
// FIXME (#9639): This needs to handle non-utf8 paths
15481548
prog: prog.as_str().unwrap().to_string(),
@@ -1559,7 +1559,7 @@ fn disassemble_extract(config: &Config, _props: &TestProps,
15591559
let bitcodefile = append_suffix_to_stem(&bitcodefile, suffix);
15601560
let extracted_bc = append_suffix_to_stem(&bitcodefile, "extract");
15611561
let extracted_ll = extracted_bc.with_extension("ll");
1562-
let prog = config.llvm_bin_path.as_ref().unwrap().join("llvm-dis");
1562+
let prog = config.llvm_bin_path.get_ref().join("llvm-dis");
15631563
let proc_args = ProcArgs {
15641564
// FIXME (#9639): This needs to handle non-utf8 paths
15651565
prog: prog.as_str().unwrap().to_string(),

0 commit comments

Comments
 (0)