Skip to content

Commit b25e8e6

Browse files
committed
---
yaml --- r: 90365 b: refs/heads/master c: b8b16ae h: refs/heads/master i: 90363: a0283d5 v: v3
1 parent bdaeaff commit b25e8e6

File tree

113 files changed

+1264
-606
lines changed

Some content is hidden

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

113 files changed

+1264
-606
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: fd7a513bef7fe3c6f5128cc53135facca37f23e5
2+
refs/heads/master: b8b16ae0996074861693f0f76d5d937fafe6a37e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
55
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8

trunk/mk/tests.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,8 @@ $(3)/stage$(1)/test/rustdoctest-$(2)$$(X_$(2)): \
394394
$$(RUSTDOC_LIB) $$(RUSTDOC_INPUTS) \
395395
$$(SREQ$(1)_T_$(2)_H_$(3)) \
396396
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBSYNTAX_$(2)) \
397-
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBRUSTC_$(2))
397+
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBRUSTC_$(2)) \
398+
$$(SUNDOWN_LIB_$(2))
398399
@$$(call E, compile_and_link: $$@)
399400
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test \
400401
-L $$(SUNDOWN_DIR_$(2))

trunk/src/driver/driver.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
// except according to those terms.
1010

1111
#[cfg(rustpkg)]
12-
extern mod this(name = "rustpkg");
12+
extern mod this = "rustpkg";
1313

1414
#[cfg(rustdoc)]
15-
extern mod this(name = "rustdoc");
15+
extern mod this = "rustdoc";
1616

1717
#[cfg(rustc)]
18-
extern mod this(name = "rustc");
18+
extern mod this = "rustc";
1919

2020
#[cfg(rustdoc_ng)]
21-
extern mod this(name = "rustdoc_ng");
21+
extern mod this = "rustdoc_ng";
2222

2323
fn main() { this::main() }

trunk/src/etc/combine-tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def scrub(b):
4242
c = open("tmp/run_pass_stage2.rc", "w")
4343
i = 0
4444
c.write("// AUTO-GENERATED FILE: DO NOT EDIT\n")
45+
c.write("#[pkgid=\"run_pass_stage2#0.1\"];\n")
4546
c.write("#[link(name=\"run_pass_stage2\", vers=\"0.1\")];\n")
4647
c.write("#[feature(globs, macro_rules, struct_variant, managed_boxes)];\n")
4748
c.write("#[allow(attribute_usage)];\n")

trunk/src/libextra/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Rust extras are part of the standard Rust distribution.
2020
2121
*/
2222

23+
#[pkgid="extra#0.9-pre"];
24+
// NOTE: remove after the next snapshot
2325
#[link(name = "extra",
2426
package_id = "extra",
2527
vers = "0.9-pre",

0 commit comments

Comments
 (0)