Skip to content

Commit 656ed7d

Browse files
committed
---
yaml --- r: 123867 b: refs/heads/snap-stage3 c: 85e2bee h: refs/heads/master i: 123865: c0b7f28 123863: 6a9e592 v: v3
1 parent fa06587 commit 656ed7d

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 4e2da7cb79143b0e7206a684629ed942599ec8e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 5d4238b6fc8769c35ff5818ed04d16a6deab784f
4+
refs/heads/snap-stage3: 85e2bee4a2ca3e63ea47389377b632403db20195
55
refs/heads/try: 296eb104620b346d88bc4a2c2ab7693e6d3db019
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
TARGET_CRATES := libc std green rustuv native flate arena glob term semver \
5353
uuid serialize sync getopts collections num test time rand \
5454
url log regex graphviz core rlibc alloc debug rustrt \
55-
unicode
55+
unicode
5656
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros fmt_macros
5757
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
5858
TOOLS := compiletest rustdoc rustc

branches/snap-stage3/mk/tests.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
# The names of crates that must be tested
1717

18-
# libcore tests are in a separate crate
18+
# libcore/libunicode tests are in a separate crate
1919
DEPS_coretest :=
2020
$(eval $(call RUST_CRATE,coretest))
2121

22-
TEST_TARGET_CRATES = $(filter-out core,$(TARGET_CRATES)) coretest
22+
TEST_TARGET_CRATES = $(filter-out core unicode,$(TARGET_CRATES)) coretest
2323
TEST_DOC_CRATES = $(DOC_CRATES)
2424
TEST_HOST_CRATES = $(HOST_CRATES)
2525
TEST_CRATES = $(TEST_TARGET_CRATES) $(TEST_HOST_CRATES)

branches/snap-stage3/src/libcollections/str.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,8 @@ mod tests {
972972
use string::String;
973973
use vec::Vec;
974974

975+
use unicode::UnicodeChar;
976+
975977
#[test]
976978
fn test_eq_slice() {
977979
assert!((eq_slice("foobar".slice(0, 3), "foo")));

branches/snap-stage3/src/libregex/test/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ mat!(uni_case_lower, r"\p{Ll}+", "ΛΘΓΔα", Some((8, 10)))
195195

196196
// Test the Unicode friendliness of Perl character classes.
197197
mat!(uni_perl_w, r"\w+", "dδd", Some((0, 4)))
198-
mat!(uni_perl_w_not, r"\w+", "", None)
199-
mat!(uni_perl_w_neg, r"\W+", "", Some((0, 3)))
198+
mat!(uni_perl_w_not, r"\w+", "", None)
199+
mat!(uni_perl_w_neg, r"\W+", "", Some((0, 3)))
200200
mat!(uni_perl_d, r"\d+", "1२३9", Some((0, 8)))
201201
mat!(uni_perl_d_not, r"\d+", "Ⅱ", None)
202202
mat!(uni_perl_d_neg, r"\D+", "Ⅱ", Some((0, 3)))

0 commit comments

Comments
 (0)