Skip to content

Commit 1f2ea64

Browse files
committed
---
yaml --- r: 153273 b: refs/heads/try2 c: 85e2bee h: refs/heads/master i: 153271: 3090a16 v: v3
1 parent 6cb69be commit 1f2ea64

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
@@ -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: 5d4238b6fc8769c35ff5818ed04d16a6deab784f
8+
refs/heads/try2: 85e2bee4a2ca3e63ea47389377b632403db20195
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/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/try2/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/try2/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/try2/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)