diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-10-09 18:49:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 18:49:56 +0100 |
commit | 251840a60d1e2ba4ceca85029bd8cc342b6cd038 (patch) | |
tree | fcb0796e32b27d2770bc5e678e769170581607a0 /tests/integration | |
parent | 20ae8db50d7d48ad020b83ebe78dc0e9e9eab3b2 (diff) |
fix: do not panic on wsl share file paths on windows (#26081)
A test is going to fail on windows (I'm not on a windows machine atm, so
running the CI to see what fails)
Closes #26080
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/run_tests.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs index db83acb19..ca24f18f4 100644 --- a/tests/integration/run_tests.rs +++ b/tests/integration/run_tests.rs @@ -5150,6 +5150,8 @@ fn emit_failed_readonly_file_system() { output.assert_matches_text("[WILDCARD]Error saving emit data ([WILDLINE]main.ts)[WILDCARD]Skipped emit cache save of [WILDLINE]other.ts[WILDCARD]hi[WILDCARD]"); } +// todo(dsherret): waiting on fix in https://github.com/servo/rust-url/issues/505 +#[ignore] #[cfg(windows)] #[test] fn handle_invalid_path_error() { |