Skip to content

Commit 73c4b33

Browse files
committed
---
yaml --- r: 152930 b: refs/heads/try2 c: 2823be0 h: refs/heads/master v: v3
1 parent 6a34c77 commit 73c4b33

File tree

120 files changed

+651
-1929
lines changed

Some content is hidden

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

120 files changed

+651
-1929
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: de337f3ddfbef800a8cf731e0b593e341af1e3e5
8+
refs/heads/try2: 2823be08b7d1b9106cbbd454437384c093c5a5fa
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/compiletest/runtest.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ fn run_debuginfo_gdb_test(config: &Config, props: &TestProps, testfile: &Path) {
320320

321321
let config = &mut config;
322322
let DebuggerCommands { commands, check_lines, .. } = parse_debugger_commands(testfile, "gdb");
323-
let mut cmds = commands.connect("\n");
323+
let mut cmds = commands.connect("\n").to_string();
324324

325325
// compile test file (it shoud have 'compile-flags:-g' in the header)
326326
let compiler_run_result = compile_test(config, props, testfile);
@@ -1035,7 +1035,10 @@ fn compose_and_run_compiler(
10351035
make_compile_args(config,
10361036
&aux_props,
10371037
crate_type.append(
1038-
extra_link_args.as_slice()),
1038+
extra_link_args.iter()
1039+
.map(|x| x.to_string())
1040+
.collect::<Vec<_>>()
1041+
.as_slice()),
10391042
|a,b| {
10401043
let f = make_lib_name(a, b, testfile);
10411044
ThisDirectory(f.dir_path())

branches/try2/src/doc/guide-macros.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ macro_rules! biased_match_rec (
355355
_ => { $err }
356356
}
357357
);
358-
// Produce the requested values
359358
( binds $( $bind_res:ident ),* ) => ( ($( $bind_res ),*) )
360359
)
361360
@@ -365,7 +364,7 @@ macro_rules! biased_match (
365364
( $( ($e:expr) ~ ($p:pat) else $err:stmt ; )*
366365
binds $bind_res:ident
367366
) => (
368-
let $bind_res = biased_match_rec!(
367+
let ( $( $bind_res ),* ) = biased_match_rec!(
369368
$( ($e) ~ ($p) else $err ; )*
370369
binds $bind_res
371370
);

0 commit comments

Comments
 (0)