mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
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
This commit is contained in:
parent
20ae8db50d
commit
251840a60d
3 changed files with 5 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1945,9 +1945,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_path_util"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4889646c1ce8437a6fde3acb057fd7e2d039e62c61f5063fc125ed1ede114dc6"
|
||||
checksum = "ff25f6e08e7a0214bbacdd6f7195c7f1ebcd850c87a624e4ff06326b68b42d99"
|
||||
dependencies = [
|
||||
"percent-encoding",
|
||||
"thiserror",
|
||||
|
|
|
@ -52,7 +52,7 @@ deno_bench_util = { version = "0.165.0", path = "./bench_util" }
|
|||
deno_lockfile = "=0.23.1"
|
||||
deno_media_type = { version = "0.1.4", features = ["module_specifier"] }
|
||||
deno_npm = "=0.25.3"
|
||||
deno_path_util = "=0.2.0"
|
||||
deno_path_util = "=0.2.1"
|
||||
deno_permissions = { version = "0.31.0", path = "./runtime/permissions" }
|
||||
deno_runtime = { version = "0.180.0", path = "./runtime" }
|
||||
deno_semver = "=0.5.14"
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue