Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add and remove some ignore-win32 flags #13275

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions src/compiletest/procsrv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,25 @@ use std::str;
use std::io::process::{ProcessExit, Process, ProcessConfig, ProcessOutput};

#[cfg(target_os = "win32")]
fn target_env(lib_path: &str, prog: &str) -> Vec<(~str,~str)> {

let mut env = os::env();
fn target_env(lib_path: &str, prog: &str) -> Vec<(~str, ~str)> {
let env = os::env();

// Make sure we include the aux directory in the path
assert!(prog.ends_with(".exe"));
let aux_path = prog.slice(0u, prog.len() - 4u).to_owned() + ".libaux";

env = env.map(|pair| {
let (k,v) = (*pair).clone();
if k == ~"PATH" { (~"PATH", v + ";" + lib_path + ";" + aux_path) }
else { (k,v) }
});
let mut new_env: Vec<_> = env.move_iter().map(|(k, v)| {
let new_v = if "PATH" == k {
format!("{};{};{}", v, lib_path, aux_path)
} else {
v
};
(k, new_v)
}).collect();
if prog.ends_with("rustc.exe") {
env.push((~"RUST_THREADS", ~"1"));
new_env.push((~"RUST_THREADS", ~"1"));
}
return env;
return new_env;
}

#[cfg(target_os = "linux")]
Expand Down
2 changes: 1 addition & 1 deletion src/compiletest/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
c
}
} ).collect();
str::from_chars( c )
str::from_chars(c.as_slice())
}

#[cfg(target_os = "win32")]
Expand Down
5 changes: 4 additions & 1 deletion src/test/debug-info/basic-types-globals-metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down Expand Up @@ -44,7 +45,9 @@
// check:type = f64
// debugger:continue

#[allow(unused_variable)];
#![allow(unused_variable)]
#![allow(dead_code)]


static B: bool = false;
static I: int = -1;
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/basic-types-globals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// about UTF-32 character encoding and will print a rust char as only
// its numerical value.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/basic-types-mut-globals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// about UTF-32 character encoding and will print a rust char as only
// its numerical value.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
4 changes: 3 additions & 1 deletion src/test/debug-info/c-style-enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down Expand Up @@ -70,7 +71,8 @@
// debugger:print 'c-style-enum::MANUAL_THREE'
// check:$18 = OneMillion

#[allow(unused_variable)];
#![allow(unused_variable)]
#![allow(dead_code)]

enum AutoDiscriminant {
One,
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-for-loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-if.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/lexical-scope-in-match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
2 changes: 1 addition & 1 deletion src/test/debug-info/lexical-scopes-in-block-expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32
// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/simple-struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/simple-tuple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 0 additions & 1 deletion src/test/debug-info/var-captured-in-nested-closure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #10474
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/vec-slices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
1 change: 1 addition & 0 deletions src/test/debug-info/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32: FIXME #13256
// ignore-android: FIXME(#10381)

// compile-flags:-g
Expand Down
3 changes: 2 additions & 1 deletion src/test/run-pass/backtrace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-win32 FIXME #13259
// ignore-fast this is executing itself
#[no_uv];
#![no_uv]

extern crate native;

Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/extern-fn-reachable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// except according to those terms.

// ignore-fast
// ignore-win32 dynamic_lib can read dllexported symbols only
// ignore-linux apparently dlsym doesn't work on program symbols?
// ignore-android apparently dlsym doesn't work on program symbols?
// ignore-freebsd apparently dlsym doesn't work on program symbols?
Expand Down