about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndré Luis Leal Cardoso Junior <andrehjr@gmail.com>2019-04-04 13:05:22 -0300
committerAndré Luis Leal Cardoso Junior <andrehjr@gmail.com>2019-07-06 11:05:22 -0300
commit83877773dac541457aecfca013b375079dfc0946 (patch)
tree2c6b9eafed3052924345f4e450b8c7eff84f372b
parent254f2014954bd66da206232490824975c0c662f1 (diff)
downloadrust-83877773dac541457aecfca013b375079dfc0946.tar.gz
rust-83877773dac541457aecfca013b375079dfc0946.zip
add ./x.py test src/doc/rustc-guide
-rw-r--r--src/bootstrap/builder.rs1
-rw-r--r--src/bootstrap/test.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 2e9df48d000..ab50bc1db22 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -405,6 +405,7 @@ impl<'a> Builder<'a> {
                 test::TheBook,
                 test::UnstableBook,
                 test::RustcBook,
+                test::RustcGuide,
                 test::EmbeddedBook,
                 test::EditionGuide,
                 test::Rustfmt,
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 1d54ca16a31..423acea016b 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -1446,6 +1446,7 @@ test_book!(
     TheBook, "src/doc/book", "book", default=false;
     UnstableBook, "src/doc/unstable-book", "unstable-book", default=true;
     EditionGuide, "src/doc/edition-guide", "edition-guide", default=false;
+    RustcGuide, "src/doc/rustc-guide", "rustc-guide", default=false;
 );
 
 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]