@@ -840,7 +840,6 @@ fn should_remove_test(file_path: &Path) -> Result<bool, String> {
840
840
"-Cllvm-args" ,
841
841
"//~" ,
842
842
"thread" ,
843
- "//@ known-bug"
844
843
]
845
844
. iter ( )
846
845
. any ( |check| line. contains ( check) )
@@ -928,6 +927,7 @@ where
928
927
let nb_parts = args. nb_parts . unwrap_or ( 0 ) ;
929
928
if nb_parts > 0 {
930
929
let current_part = args. current_part . unwrap ( ) ;
930
+ // FIXME: create a function "display_if_not_quiet" or something along the line.
931
931
println ! (
932
932
"Splitting ui_test into {} parts (and running part {})" ,
933
933
nb_parts, current_part
@@ -1047,7 +1047,7 @@ fn prepare_files_callback_failing<'a>(
1047
1047
move |rust_path| {
1048
1048
let files = std:: fs:: read_to_string ( file_path) . unwrap_or_default ( ) ;
1049
1049
let first_file_name = files. lines ( ) . next ( ) . unwrap_or ( "" ) ;
1050
- // If the first line ends with a `/`, we treat it as a directory.
1050
+ // If the first line ends with a `/`, we treat all lines in the file as a directory.
1051
1051
if first_file_name. ends_with ( '/' ) {
1052
1052
// Treat as directory
1053
1053
// Removing all tests.
@@ -1110,7 +1110,7 @@ fn prepare_files_callback_success<'a>(
1110
1110
move |rust_path| {
1111
1111
let files = std:: fs:: read_to_string ( file_path) . unwrap_or_default ( ) ;
1112
1112
let first_file_name = files. lines ( ) . next ( ) . unwrap_or ( "" ) ;
1113
- // If the first line ends with a `/`, we treat it as a directory.
1113
+ // If the first line ends with a `/`, we treat all lines in the file as a directory.
1114
1114
if first_file_name. ends_with ( '/' ) {
1115
1115
if let Ok ( files) = std:: fs:: read_to_string ( file_path) {
1116
1116
for file in
0 commit comments