about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2019-12-03 21:26:34 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-12-03 19:37:21 -0600
commita901945587499a041ce0ef98f435627b1b5cb64e (patch)
tree0b7e5af4a06d4f1c120973356481d4e0559aa193 /src/doc/rustc-dev-guide
parenta682d038107e6388d9492aaa44bc8c53f63114e3 (diff)
downloadrust-a901945587499a041ce0ef98f435627b1b5cb64e.tar.gz
rust-a901945587499a041ce0ef98f435627b1b5cb64e.zip
Remove reference to run-pass tests
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/intro.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/intro.md b/src/doc/rustc-dev-guide/src/tests/intro.md
index e78e33475fa..4572d23ca95 100644
--- a/src/doc/rustc-dev-guide/src/tests/intro.md
+++ b/src/doc/rustc-dev-guide/src/tests/intro.md
@@ -26,9 +26,7 @@ that give more details.
 
 - [`ui`](./adding.html#ui) – tests that check the exact
   stdout/stderr from compilation and/or running the test
-- `run-pass` – tests that are expected to compile and execute
-  successfully (no panics)
-  - `run-pass-valgrind` – tests that ought to run with valgrind
+- `run-pass-valgrind` – tests that ought to run with valgrind
 - `run-fail` – tests that are expected to compile but then panic
   during execution
 - `compile-fail` – tests that are expected to fail compilation.