Skip to content

Commit dabb30a

Browse files
committed
---
yaml --- r: 131353 b: refs/heads/dist-snap c: 2823be0 h: refs/heads/master i: 131351: 6fc3593 v: v3
1 parent 3848bda commit dabb30a

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
@@ -6,7 +6,7 @@ refs/heads/try: 457a3c991d79b971be07fce75f9d0c12848fb37c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: de337f3ddfbef800a8cf731e0b593e341af1e3e5
9+
refs/heads/dist-snap: 2823be08b7d1b9106cbbd454437384c093c5a5fa
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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/dist-snap/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)