From 83877773dac541457aecfca013b375079dfc0946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Thu, 4 Apr 2019 13:05:22 -0300 Subject: [PATCH] add ./x.py test src/doc/rustc-guide --- src/bootstrap/builder.rs | 1 + src/bootstrap/test.rs | 1 + 2 files changed, 2 insertions(+) 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)]