diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-04-17 09:57:09 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-04-20 13:14:08 +0200 |
| commit | fbca453d7dcf55cd57baf1a01dd45e3c21086dd5 (patch) | |
| tree | d60d0310bf05bf9c80c74a97a5aefb4d67c72e4d /src/tools | |
| parent | 40058519bae2c4921e5a1cf5db42c0e9861b156f (diff) | |
| download | rust-fbca453d7dcf55cd57baf1a01dd45e3c21086dd5.tar.gz rust-fbca453d7dcf55cd57baf1a01dd45e3c21086dd5.zip | |
Fix compiletest and doc comment
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/compiletest/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/lib.rs b/src/tools/compiletest/src/lib.rs index d4d35cf78b4..b3b9299ea07 100644 --- a/src/tools/compiletest/src/lib.rs +++ b/src/tools/compiletest/src/lib.rs @@ -745,7 +745,7 @@ fn modified_tests(config: &Config, dir: &Utf8Path) -> Result<Vec<Utf8PathBuf>, S &vec!["rs", "stderr", "fixed"], )?; // Add new test cases to the list, it will be convenient in daily development. - let untracked_files = get_git_untracked_files(Some(dir))?.unwrap_or(vec![]); + let untracked_files = get_git_untracked_files(Some(dir.as_std_path()))?.unwrap_or(vec![]); let all_paths = [&files[..], &untracked_files[..]].concat(); let full_paths = { |
