about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorDenys Zariaiev <denys.zariaiev@gmail.com>2019-02-27 23:31:30 +0100
committerDenys Zariaiev <denys.zariaiev@gmail.com>2019-02-27 23:33:05 +0100
commit5c7ec6c421af26666d3ec1c5fe022d099133951c (patch)
tree2900141d5fa4d8a81ef05be66704dbac6972d6b9 /src/bootstrap
parentb57fe74a27590289fd657614b8ad1f3eac8a7ad2 (diff)
downloadrust-5c7ec6c421af26666d3ec1c5fe022d099133951c.tar.gz
rust-5c7ec6c421af26666d3ec1c5fe022d099133951c.zip
Introduce assembly tests
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/builder.rs3
-rw-r--r--src/bootstrap/test.rs6
2 files changed, 8 insertions, 1 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 7e6c0a9f52a..6c2785a3723 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -411,7 +411,8 @@ impl<'a> Builder<'a> {
                 test::Bootstrap,
                 // Run run-make last, since these won't pass without make on Windows
                 test::RunMake,
-                test::RustdocUi
+                test::RustdocUi,
+                test::Assembly,
             ),
             Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
             Kind::Doc => describe!(
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 51412f79c3d..9cd2f95d752 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -895,6 +895,12 @@ host_test!(RunMakeFullDeps {
     suite: "run-make-fulldeps"
 });
 
+default_test!(Assembly {
+    path: "src/test/assembly",
+    mode: "assembly",
+    suite: "assembly"
+});
+
 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
 struct Compiletest {
     compiler: Compiler,