We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b88a1b commit 554f21bCopy full SHA for 554f21b
src/bootstrap/check.rs
@@ -563,7 +563,9 @@ fn find_tests(dir: &Path,
563
let filename = e.file_name().into_string().unwrap();
564
if (target.contains("windows") && filename.ends_with(".exe")) ||
565
(!target.contains("windows") && !filename.contains(".")) ||
566
- (target.contains("emscripten") && filename.ends_with(".js")) {
+ (target.contains("emscripten") &&
567
+ filename.ends_with(".js") &&
568
+ !filename.ends_with(".asm.js")) {
569
dst.push(e.path());
570
}
571
0 commit comments