about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-04-15 20:00:56 -0700
committerbors <bors@rust-lang.org>2013-04-15 20:00:56 -0700
commit16e8af9e477fd5a6e7dcf668840144a97e3b1410 (patch)
tree0aadb938c2b293f149e4501fb26b5da5e6a818c1 /src/libsyntax/parse
parent447caf9bdb8b769581fcd8c337634da431d21954 (diff)
parent40e3577b0834794b2d44e6c527fda90d1adbc88e (diff)
downloadrust-16e8af9e477fd5a6e7dcf668840144a97e3b1410.tar.gz
rust-16e8af9e477fd5a6e7dcf668840144a97e3b1410.zip
auto merge of #5895 : huonw/rust/no-pub-tests, r=thestinger
This patch is a sledge hammer that moves all tests into `#[cfg(test)] mod test { .. }`, and makes them private, there were several instances of `pub mod tests { #[test] pub fn ... } `.

(The reason for this is I was playing with using `syntax` to index code ([result so far](http://www.ug.it.usyd.edu.au/~hwil7821/rust-api/)) and it was getting some junk from the tests.)

The rustdoc commit is particularly brutal, so it's fine if that one isn't landed.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/lexer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs
index 59e4dddc73b..bc930515a5d 100644
--- a/src/libsyntax/parse/lexer.rs
+++ b/src/libsyntax/parse/lexer.rs
@@ -781,7 +781,7 @@ fn consume_whitespace(rdr: @mut StringReader) {
 }
 
 #[cfg(test)]
-pub mod test {
+mod test {
     use super::*;
 
     use ast;