Auto merge of #120 - llogiq:fix-no-std, r=mbrubeck

disable std::panic::catch_unwind-using test on no_std

This fixes #119

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-smallvec/120)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo
2018-08-22 13:05:37 -04:00
committed by GitHub
+1
View File
@@ -1741,6 +1741,7 @@ mod tests {
assert_eq!(&v.iter().map(|v| *v).collect::<Vec<_>>(), &[0, 5, 6, 1, 2, 3]);
}
#[cfg(feature = "std")]
#[test]
// https://github.com/servo/rust-smallvec/issues/96
fn test_insert_many_panic() {