about summary refs log tree commit diff
path: root/src/bootstrap/lib.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-02-21 14:21:04 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2021-02-21 14:21:04 +0100
commit50b39b2b65be6f0d3eca29c24abccc8bafffcea5 (patch)
tree792c00327ba1cd6869a03165b0046207ace2c896 /src/bootstrap/lib.rs
parente7c23ab933ebc1f205c3b59f4ebc85d40f67d404 (diff)
downloadrust-50b39b2b65be6f0d3eca29c24abccc8bafffcea5.tar.gz
rust-50b39b2b65be6f0d3eca29c24abccc8bafffcea5.zip
Add new rustdoc-gui test suite
Diffstat (limited to 'src/bootstrap/lib.rs')
-rw-r--r--src/bootstrap/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index 88fdcfa2d43..5d708d3b25c 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -637,6 +637,10 @@ impl Build {
         self.out.join(&*target.triple).join("doc")
     }
 
+    fn test_out(&self, target: TargetSelection) -> PathBuf {
+        self.out.join(&*target.triple).join("test")
+    }
+
     /// Output directory for all documentation for a target
     fn compiler_doc_out(&self, target: TargetSelection) -> PathBuf {
         self.out.join(&*target.triple).join("compiler-doc")