summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-07-05 15:58:25 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-07-05 16:10:29 -0700
commit889be71cb4d4252073f2dbdedb71e8ea1645f6e3 (patch)
treef1ec5573b95225ba92358ee9b9832c50995f8f44 /src/test
parent50d2e7e07e79f3f055832756469eb974fe719de1 (diff)
downloadrust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.tar.gz
rust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.zip
Comments only: change TODOs to FIXMEs and annotate them
Diffstat (limited to 'src/test')
-rw-r--r--src/test/bench/task-perf-word-count-generic.rs2
-rw-r--r--src/test/run-pass/unchecked-predicates.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/test/bench/task-perf-word-count-generic.rs b/src/test/bench/task-perf-word-count-generic.rs
index fa22e77eac7..8e7ba1d3e3a 100644
--- a/src/test/bench/task-perf-word-count-generic.rs
+++ b/src/test/bench/task-perf-word-count-generic.rs
@@ -235,7 +235,7 @@ fn main(argv: ~[str]) {
 
         out.write_line(#fmt["Usage: %s <filename> ...", argv[0]]);
 
-        // TODO: run something just to make sure the code hasn't
+        // FIXME (#2815): run something just to make sure the code hasn't
         // broken yet. This is the unit test mode of this program.
 
         ret;
diff --git a/src/test/run-pass/unchecked-predicates.rs b/src/test/run-pass/unchecked-predicates.rs
index 99131811ae1..c897c676329 100644
--- a/src/test/run-pass/unchecked-predicates.rs
+++ b/src/test/run-pass/unchecked-predicates.rs
@@ -1,6 +1,4 @@
 // Uses foldl to exhibit the unchecked block syntax.
-// TODO: since list's head/tail require the predicate "is_not_empty" now and
-// we have unit tests for list, this test might me not necessary anymore?
 use std;
 
 import std::list::*;