From 830540e40f96e76dcfe54b960eb52df30a3d6465 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 10 Mar 2014 11:17:40 -0700 Subject: [PATCH] Updated Note testsuite (markdown) --- Note-testsuite.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Note-testsuite.md b/Note-testsuite.md index 1c1c345..7d2ccac 100644 --- a/Note-testsuite.md +++ b/Note-testsuite.md @@ -195,7 +195,7 @@ mod test { ## Documentation tests -The build system is able to extract Rust code snippets from documentation and run them using the compiletest driver. Currently the tutorial and reference manual are tested this way. The targets are `make check-stage[N]-doc-tutorial` and `make check-stage[N]-doc-rust`, respectively. There are also several auxiliary tutorials; to run the tests extracted from them, do: +The build system is able to extract Rust code snippets from documentation and run them using the compiletest driver. Currently the tutorial and reference manual are tested this way. The targets are `make check-stage[N]-doc-tutorial` and `make check-stage[N]-doc-rust`, respectively. There are also several auxiliary guides; to run the tests extracted from them, do: * `make check-stage[N]-doc-guide-borrowed-ptr` * `make check-stage[N]-doc-guide-tasks` @@ -203,6 +203,10 @@ The build system is able to extract Rust code snippets from documentation and ru * `make check-stage[N]-doc-guide-macros` * `make check-stage[N]-doc-guide-testing` +Crate API docs are tested as well: + +* `make check-stage[N]-doc-crate-std` + To run all doc tests use `make check-stage[N]-doc`. ## Fast check