This commit is contained in:
Luke Boswell 2024-11-11 10:22:58 +11:00
parent 743030fc99
commit 8a566dc339
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
260 changed files with 6344 additions and 2958 deletions

View file

@ -77,6 +77,14 @@ fn collect_uitest_files() -> io::Result<Vec<PathBuf>> {
}
if path.extension() == Some(OsStr::new("txt")) {
// see issue 6947
if cfg!(debug_assertions)
&& path.to_string_lossy().contains(
"match_on_result_with_uninhabited_error_destructuring_in_lambda_syntax",
)
{
continue;
}
tests.push(path);
}
}