about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-09-15 17:34:10 +0200
committerSimon Sapin <simon.sapin@exyr.org>2017-10-24 21:41:33 +0200
commit9d2e83e759379c5e86255da7aab04ba3c994796b (patch)
treed28d0abf28b086fe12521fa6229edcbc44819ea3
parentf4f18586e755f239b5be3a60a6e3bfd382524210 (diff)
downloadrust-9d2e83e759379c5e86255da7aab04ba3c994796b.tar.gz
rust-9d2e83e759379c5e86255da7aab04ba3c994796b.zip
Add Stylo to cargotest
-rw-r--r--src/tools/cargotest/main.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/cargotest/main.rs b/src/tools/cargotest/main.rs
index 6faf307ad02..68cdcdd9c5d 100644
--- a/src/tools/cargotest/main.rs
+++ b/src/tools/cargotest/main.rs
@@ -58,6 +58,15 @@ const TEST_REPOS: &'static [Test] = &[
         lock: None,
         packages: &[],
     },
+    Test {
+        name: "servo",
+        repo: "https://github.com/servo/servo",
+        sha: "38fe9533b93e985657f99a29772bf3d3c8694822",
+        lock: None,
+        // Only test Stylo a.k.a. Quantum CSS, the parts of Servo going into Firefox.
+        // This takes much less time to build than all of Servo and supports stable Rust.
+        packages: &["stylo_tests", "selectors"],
+    },
 ];
 
 fn main() {