From 85919a0b5f474783cb56cd433292865a40539665 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 22 Dec 2017 11:19:50 +0530 Subject: [PATCH] Pass tidy for tests --- src/libcore/tests/pattern.rs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/libcore/tests/pattern.rs b/src/libcore/tests/pattern.rs index 7fe274a79ed0..d0fd15263b21 100644 --- a/src/libcore/tests/pattern.rs +++ b/src/libcore/tests/pattern.rs @@ -1,3 +1,13 @@ +// Copyright 2017 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + use std::str::pattern::*; // This macro makes it easier to write @@ -42,7 +52,9 @@ impl From> for Step { } } -// XXXManishearth these tests focus on single-character searching (CharSearcher) +// ignore-tidy-linelength + +// FIXME(Manishearth) these tests focus on single-character searching (CharSearcher) // and on next()/next_match(), not next_reject(). This is because // the memchr changes make next_match() for single chars complex, but next_reject() // continues to use next() under the hood. We should add more test cases for all @@ -51,7 +63,7 @@ impl From> for Step { #[test] fn test_simple_iteration() { search_asserts! ("abcdeabcd", 'a', "forward iteration for ASCII string", - // a b c d e a b c d EOF + // a b c d e a b c d EOF [next, next, next, next, next, next, next, next, next, next], [Matches(0, 1), Rejects(1, 2), Rejects(2, 3), Rejects(3, 4), Rejects(4, 5), Matches(5, 6), Rejects(6, 7), Rejects(7, 8), Rejects(8, 9), Done] );