about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-03-31 14:49:56 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2018-04-16 23:33:43 +0200
commit035ec5bbb62c2cef64840389508707da5febeb8b (patch)
tree20f6c104ea30733a26fc3b37b80dd633dcca06c6 /src/bootstrap
parent49317cd511fbb60178bd5122e484609568938468 (diff)
downloadrust-035ec5bbb62c2cef64840389508707da5febeb8b.tar.gz
rust-035ec5bbb62c2cef64840389508707da5febeb8b.zip
Add warning if a resolution failed
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 29c8cd1568a..e7610976f8e 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -514,6 +514,41 @@ impl Step for RustdocJS {
     }
 }
 
+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
+pub struct RustdocUi {
+    pub host: Interned<String>,
+    pub target: Interned<String>,
+    pub compiler: Compiler,
+}
+
+impl Step for RustdocUi {
+    type Output = ();
+    const DEFAULT: bool = true;
+    const ONLY_HOSTS: bool = true;
+
+    fn should_run(run: ShouldRun) -> ShouldRun {
+        run.path("src/test/rustdoc-ui")
+    }
+
+    fn make_run(run: RunConfig) {
+        let compiler = run.builder.compiler(run.builder.top_stage, run.host);
+        run.builder.ensure(RustdocUi {
+            host: run.host,
+            target: run.target,
+            compiler,
+        });
+    }
+
+    fn run(self, builder: &Builder) {
+        builder.ensure(Compiletest {
+            compiler: self.compiler,
+            target: self.target,
+            mode: "ui",
+            suite: "rustdoc-ui",
+        })
+    }
+}
+
 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
 pub struct Tidy;