We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3087a1f commit 4eeede3Copy full SHA for 4eeede3
src/bootstrap/check.rs
@@ -550,7 +550,7 @@ fn find_tests(dir: &Path,
550
let filename = e.file_name().into_string().unwrap();
551
if (target.contains("windows") && filename.ends_with(".exe")) ||
552
(!target.contains("windows") && !filename.contains(".")) ||
553
- (target.contains("emscripten") && filename.contains(".js")){
+ (target.contains("emscripten") && filename.ends_with(".js")) {
554
dst.push(e.path());
555
}
556
0 commit comments