Ignore all debuginfo tests on emscripten
This commit is contained in:
parent
9c4a01ee9e
commit
00e377c161
@ -431,10 +431,17 @@ pub fn make_test(config: &Config, testpaths: &TestPaths) -> test::TestDescAndFn
|
||||
}
|
||||
};
|
||||
|
||||
// Debugging emscripten code doesn't make sense today
|
||||
let mut ignore = early_props.ignore;
|
||||
if (config.mode == DebugInfoGdb || config.mode == DebugInfoLldb) &&
|
||||
config.target.contains("emscripten") {
|
||||
ignore = true;
|
||||
}
|
||||
|
||||
test::TestDescAndFn {
|
||||
desc: test::TestDesc {
|
||||
name: make_test_name(config, testpaths),
|
||||
ignore: early_props.ignore,
|
||||
ignore: ignore,
|
||||
should_panic: should_panic,
|
||||
},
|
||||
testfn: make_test_closure(config, testpaths),
|
||||
|
Loading…
Reference in New Issue
Block a user