about summary refs log tree commit diff
path: root/src/test/run-pass
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-11-28 17:58:58 +0000
committerbors <bors@rust-lang.org>2017-11-28 17:58:58 +0000
commit71340ca4e181b824bcefa887f1be60dd0b7352ce (patch)
treedfff87c0583208025944813532cbe3f0361926f0 /src/test/run-pass
parent5a59704525963a135359fdbcba78da796b64ab5c (diff)
parent73970bf6f287b93ebd9775783652217e1aca02d3 (diff)
downloadrust-71340ca4e181b824bcefa887f1be60dd0b7352ce.tar.gz
rust-71340ca4e181b824bcefa887f1be60dd0b7352ce.zip
Auto merge of #46291 - alexcrichton:wasm-tests, r=kennytm
ci: Start running wasm32 tests on Travis

This commit allocates a builder to running wasm32 tests on Travis. Not all test
suites pass right now so this is starting out with just the run-pass and the
libcore test suites. This'll hopefully give us a pretty broad set of coverage
for integration in rustc itself as well as a somewhat broad coverage of the llvm
backend itself through integration/unit tests.
Diffstat (limited to 'src/test/run-pass')
-rw-r--r--src/test/run-pass/next-power-of-two-overflow-debug.rs1
-rw-r--r--src/test/run-pass/saturating-float-casts.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/test/run-pass/next-power-of-two-overflow-debug.rs b/src/test/run-pass/next-power-of-two-overflow-debug.rs
index a3e7ffd4e49..2782f8c2a59 100644
--- a/src/test/run-pass/next-power-of-two-overflow-debug.rs
+++ b/src/test/run-pass/next-power-of-two-overflow-debug.rs
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 // compile-flags: -C debug_assertions=yes
+// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(i128_type)]
 
diff --git a/src/test/run-pass/saturating-float-casts.rs b/src/test/run-pass/saturating-float-casts.rs
index c8fa49c62a0..4cd171f0ac0 100644
--- a/src/test/run-pass/saturating-float-casts.rs
+++ b/src/test/run-pass/saturating-float-casts.rs
@@ -10,6 +10,7 @@
 
 // Tests saturating float->int casts. See u128-as-f32.rs for the opposite direction.
 // compile-flags: -Z saturating-float-casts
+// ignore-wasm32-bare FIXME(#46298) needs upstream llvm fixes
 
 #![feature(test, i128, i128_type, stmt_expr_attributes)]
 #![deny(overflowing_literals)]