Skip to content

Commit

Permalink
auto merge of #16450 : klutzy/rust/win-fixme-cleanup, r=alexcrichton
Browse files Browse the repository at this point in the history
First commit enables regex test on Windows. It was not working at some point (#13725), but it works now.

Second commit removes various FIXMEs regarding #13793, since upstream bug has been fixed.
  • Loading branch information
bors committed Aug 18, 2014
2 parents 1824973 + 4806746 commit ef439dd
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 18 deletions.
3 changes: 1 addition & 2 deletions src/libregex/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,7 @@ mod parse;
mod re;
mod vm;

// FIXME(#13725) windows needs fixing.
#[cfg(test, not(windows))]
#[cfg(test)]
mod test;

/// The `native` module exists to support the `regex!` macro. Do not use.
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/shootout-regex-dna.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
// OF THE POSSIBILITY OF SUCH DAMAGE.

// FIXME(#13725) windows needs fixing.
// ignore-windows
// ignore-stage1
// ignore-cross-compile #12102

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// FIXME(#13725) windows needs fixing.
// ignore-windows
// ignore-stage1

#![feature(phase)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// FIXME(#13725) windows needs fixing.
// ignore-windows
// ignore-stage1

#![feature(phase)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// FIXME(#13725) windows needs fixing.
// ignore-windows
// ignore-stage1

#![feature(phase)]
Expand Down
5 changes: 0 additions & 5 deletions src/test/run-make/no-intermediate-extras/foo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,3 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// FIXME #13793
#[test]
fn test_dummy() {
}
2 changes: 0 additions & 2 deletions src/test/run-pass/issue-14393.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-windows: FIXME #13793

fn main() {
match ("", 1u) {
(_, 42u) => (),
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/test-runner-hides-main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
// except according to those terms.

// compile-flags:--test
// ignore-windows #10872
// ignore-pretty: does not work well with `--test`

// Building as a test runner means that a synthetic main will be run,
Expand Down

0 comments on commit ef439dd

Please sign in to comment.