From 21b987ea089c08627016bca7074960a1ba77ae6d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 27 Sep 2016 21:07:17 +0000 Subject: [PATCH] Unignore some working emscripten tests --- src/test/run-fail/run-unexported-tests.rs | 1 - src/test/run-pass/issue-16597.rs | 1 - src/test/run-pass/issue-20823.rs | 1 - src/test/run-pass/issue-29663.rs | 1 - src/test/run-pass/packed-struct-vec.rs | 1 - .../test-fn-signature-verification-for-explicit-return-type.rs | 1 - src/test/run-pass/test-should-fail-good-message.rs | 1 - 7 files changed, 7 deletions(-) diff --git a/src/test/run-fail/run-unexported-tests.rs b/src/test/run-fail/run-unexported-tests.rs index bc7b3540d1e..8158333ade8 100644 --- a/src/test/run-fail/run-unexported-tests.rs +++ b/src/test/run-fail/run-unexported-tests.rs @@ -12,7 +12,6 @@ // compile-flags:--test // check-stdout // ignore-pretty: does not work well with `--test` -// ignore-emscripten Needs threads. mod m { pub fn exported() {} diff --git a/src/test/run-pass/issue-16597.rs b/src/test/run-pass/issue-16597.rs index 77c45545221..7f0a341f147 100644 --- a/src/test/run-pass/issue-16597.rs +++ b/src/test/run-pass/issue-16597.rs @@ -10,7 +10,6 @@ // compile-flags:--test // ignore-pretty turns out the pretty-printer doesn't handle gensym'd things... -// ignore-emscripten mod tests { use super::*; diff --git a/src/test/run-pass/issue-20823.rs b/src/test/run-pass/issue-20823.rs index aa5d0151446..c297998b649 100644 --- a/src/test/run-pass/issue-20823.rs +++ b/src/test/run-pass/issue-20823.rs @@ -10,7 +10,6 @@ // compile-flags: --test // no-pretty-expanded -// ignore-emscripten #![deny(unstable)] diff --git a/src/test/run-pass/issue-29663.rs b/src/test/run-pass/issue-29663.rs index 88958744fe9..9a77be049fe 100644 --- a/src/test/run-pass/issue-29663.rs +++ b/src/test/run-pass/issue-29663.rs @@ -9,7 +9,6 @@ // except according to those terms. // write_volatile causes an LLVM assert with composite types -// ignore-emscripten write_volatile doesn't work on arrays of structs? #![feature(volatile)] use std::ptr::{read_volatile, write_volatile}; diff --git a/src/test/run-pass/packed-struct-vec.rs b/src/test/run-pass/packed-struct-vec.rs index 9873f23137b..4b32b881be7 100644 --- a/src/test/run-pass/packed-struct-vec.rs +++ b/src/test/run-pass/packed-struct-vec.rs @@ -7,7 +7,6 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-emscripten Right side of comparison is screwed up. No idea how. use std::mem; diff --git a/src/test/run-pass/test-fn-signature-verification-for-explicit-return-type.rs b/src/test/run-pass/test-fn-signature-verification-for-explicit-return-type.rs index b5f303b8760..d58b5d3a00f 100644 --- a/src/test/run-pass/test-fn-signature-verification-for-explicit-return-type.rs +++ b/src/test/run-pass/test-fn-signature-verification-for-explicit-return-type.rs @@ -7,7 +7,6 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-emscripten needs threads? #![feature(test)] diff --git a/src/test/run-pass/test-should-fail-good-message.rs b/src/test/run-pass/test-should-fail-good-message.rs index 95378df41c6..28698499303 100644 --- a/src/test/run-pass/test-should-fail-good-message.rs +++ b/src/test/run-pass/test-should-fail-good-message.rs @@ -10,7 +10,6 @@ // compile-flags: --test // ignore-pretty: does not work well with `--test` -// ignore-emscripten needs threads? #[test] #[should_panic(expected = "foo")] -- GitLab