about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2016-04-25 18:07:15 -0400
committerNiko Matsakis <niko@alum.mit.edu>2016-05-06 16:24:47 -0400
commit77ae7591a88a87f901cfd1e6a8a9e77a944a49b4 (patch)
tree8d8ae9c79af85611bfdb9913c84d4fc8bce364dc /src/tools
parent6b10756a59c37a53761c326946dc4e42f24ff606 (diff)
downloadrust-77ae7591a88a87f901cfd1e6a8a9e77a944a49b4.tar.gz
rust-77ae7591a88a87f901cfd1e6a8a9e77a944a49b4.zip
tweak incremental comment
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/compiletest/src/runtest.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs
index 14a4c74bcd4..98dfdb08a7f 100644
--- a/src/tools/compiletest/src/runtest.rs
+++ b/src/tools/compiletest/src/runtest.rs
@@ -1937,19 +1937,19 @@ actual:\n\
 
     fn run_incremental_test(&self) {
         // Basic plan for a test incremental/foo/bar.rs:
-        // - load list of revisions pass1, fail2, pass3
-        //   - each should begin with `rpass`, `rfail`, or `cfail`
+        // - load list of revisions rpass1, cfail2, rpass3
+        //   - each should begin with `rpass`, `cfail`, or `cfail`
         //   - if `rpass`, expect compile and execution to succeed
         //   - if `cfail`, expect compilation to fail
         //   - if `rfail`, expect execution to fail
         // - create a directory build/foo/bar.incremental
-        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C pass1
-        //   - because name of revision starts with "pass", expect success
-        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C fail2
-        //   - because name of revision starts with "fail", expect an error
-        //   - load expected errors as usual, but filter for those that end in `[fail2]`
-        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C pass3
-        //   - because name of revision starts with "pass", expect success
+        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C rpass1
+        //   - because name of revision starts with "rpass", expect success
+        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C cfail2
+        //   - because name of revision starts with "cfail", expect an error
+        //   - load expected errors as usual, but filter for those that end in `[rfail2]`
+        // - compile foo/bar.rs with -Z incremental=.../foo/bar.incremental and -C rpass3
+        //   - because name of revision starts with "rpass", expect success
         // - execute build/foo/bar.exe and save output
         //
         // FIXME -- use non-incremental mode as an oracle? That doesn't apply