about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorDenys Zariaiev <denys.zariaiev@gmail.com>2019-03-16 23:33:43 +0100
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-03-22 16:30:05 -0500
commitc1c0a4ef507ba477b5cbb4154acec48b76a9b93e (patch)
tree12f486dba029d5dd0cef5095cd5118ed5fca1c53 /src/doc/rustc-dev-guide
parent5a9da9eba0c67ac0c2d5e3a43daae38b7877893f (diff)
downloadrust-c1c0a4ef507ba477b5cbb4154acec48b76a9b93e.tar.gz
rust-c1c0a4ef507ba477b5cbb4154acec48b76a9b93e.zip
Add a note about `assembly` test suite.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/intro.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/intro.md b/src/doc/rustc-dev-guide/src/tests/intro.md
index 4d509f3a8ed..c043da42967 100644
--- a/src/doc/rustc-dev-guide/src/tests/intro.md
+++ b/src/doc/rustc-dev-guide/src/tests/intro.md
@@ -38,6 +38,8 @@ that give more details.
 - `debuginfo` – tests that run in gdb or lldb and query the debug info
 - `codegen` – tests that compile and then test the generated LLVM
   code to make sure that the optimizations we want are taking effect.
+- `assembly` – similar to `codegen` tests, but verifies assembly output
+  to make sure LLVM target backend can handle provided code.
 - `mir-opt` – tests that check parts of the generated MIR to make
   sure we are building things correctly or doing the optimizations we
   expect.