about summary refs log tree commit diff
path: root/src/liballoc/tests/binary_heap.rs
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2019-10-02 11:02:25 -0700
committerThomas Lively <tlively@google.com>2019-10-04 00:47:21 -0700
commit5b56c660c9cf55b240d26854fa0ffd41db068ff9 (patch)
tree03bc9b23e0f08f0f94054e85d64672a769c7e339 /src/liballoc/tests/binary_heap.rs
parent9a55103b985fdd4a7d90db5d46ebaf0a9e34b419 (diff)
downloadrust-5b56c660c9cf55b240d26854fa0ffd41db068ff9.tar.gz
rust-5b56c660c9cf55b240d26854fa0ffd41db068ff9.zip
Fix ABI, run and fix more tests, re-enable CI for PRs
Diffstat (limited to 'src/liballoc/tests/binary_heap.rs')
-rw-r--r--src/liballoc/tests/binary_heap.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/liballoc/tests/binary_heap.rs b/src/liballoc/tests/binary_heap.rs
index 0685fa943c0..b8c720264d0 100644
--- a/src/liballoc/tests/binary_heap.rs
+++ b/src/liballoc/tests/binary_heap.rs
@@ -1,10 +1,5 @@
-use std::cmp;
 use std::collections::BinaryHeap;
 use std::collections::binary_heap::{Drain, PeekMut};
-use std::panic::{self, AssertUnwindSafe};
-use std::sync::atomic::{AtomicUsize, Ordering};
-
-use rand::{thread_rng, seq::SliceRandom};
 
 #[test]
 fn test_iterator() {
@@ -281,9 +276,15 @@ fn assert_covariance() {
 // even if the order may not be correct.
 //
 // Destructors must be called exactly once per element.
+// FIXME: re-enable emscripten once it can unwind again
 #[test]
-#[cfg(not(miri))] // Miri does not support catching panics
+#[cfg(not(any(miri, target_os = "emscripten")))] // Miri does not support catching panics
 fn panic_safe() {
+    use std::cmp;
+    use std::panic::{self, AssertUnwindSafe};
+    use std::sync::atomic::{AtomicUsize, Ordering};
+    use rand::{thread_rng, seq::SliceRandom};
+
     static DROP_COUNTER: AtomicUsize = AtomicUsize::new(0);
 
     #[derive(Eq, PartialEq, Ord, Clone, Debug)]