Skip to content

Commit 188d889

Browse files
committed
ignore-lexer-test to broken files and remove some tray hyphens
I blame @chrismorgan for the hyphens.
1 parent f8fd32e commit 188d889

File tree

16 files changed

+36
-9
lines changed

16 files changed

+36
-9
lines changed

src/libcollections/slice.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ impl<'a, T: Clone, V: Vector<T>> VectorVector<T> for &'a [V] {
155155
/// a sequence of all possible permutations for an indexed sequence of
156156
/// elements. Each permutation is only a single swap apart.
157157
///
158-
/// The SteinhausJohnsonTrotter algorithm is used.
158+
/// The Steinhaus-Johnson-Trotter algorithm is used.
159159
///
160160
/// Generates even and odd permutations alternately.
161161
///

src/libcollections/str.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
/*!
1214

src/libcollections/string.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
//! An owned, growable string that enforces that its contents are valid UTF-8.
1214

src/libcore/str.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
//! String manipulation
1214
//!

src/libcoretest/char.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
use core::char::{escape_unicode, escape_default};
1214

src/libgetopts/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15677
1012

1113
//! Simple getopt alternative.
1214
//!

src/libgreen/macros.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// FIXME: this file probably shouldn't exist
12+
// ignore-lexer-test FIXME #15677
1213

1314
#![macro_escape]
1415

src/libregex/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
//! This crate provides a native implementation of regular expressions that is
1214
//! heavily based on RE2 both in syntax and in implementation. Notably,

src/librustrt/util.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15677
1012

1113
use core::prelude::*;
1214

src/libserialize/base64.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
//
11+
// ignore-lexer-test FIXME #15679
1012

1113
//! Base64 binary-to-text encoding
1214
use std::str;

0 commit comments

Comments
 (0)