Skip to content

Commit

Permalink
add fixme about walking tests tree
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Jan 24, 2024
1 parent 0710ebb commit bcfdf33
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tools/compiletest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,8 @@ fn collect_tests_from_dir(

// Add each `.rs` file as a test, and recurse further on any
// subdirectories we find, except for `aux` directories.
// FIXME: this walks full tests tree, even if we have something to ignore
// use walkdir/ignore like in tidy?
for file in fs::read_dir(dir)? {
let file = file?;
let file_path = file.path();
Expand Down

0 comments on commit bcfdf33

Please sign in to comment.