diff options
author | Alessandro Cosentino <alessandro@alecsn.it> | 2024-02-05 17:30:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 09:30:14 -0700 |
commit | cb407bb546aba3e402135a2d6c746ee9c8ddc040 (patch) | |
tree | 35a54ca677abe3d43fbee131f30b35fd8313f4ad | |
parent | e53ced0b8dc458e772ae08fdf152efa889a2250a (diff) |
fix: Fix segmentation fault in tests on CPUs with PKU support (#22152)
This is a followup on denoland/deno_core#471.
Fixes #21439.
-rw-r--r-- | cli/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f41cdb9a3..95c96dbd0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -147,6 +147,7 @@ nix.workspace = true [dev-dependencies] deno_bench_util.workspace = true +deno_core = { workspace = true, features = ["include_js_files_for_snapshotting", "unsafe_use_unprotected_platform"] } fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] } flaky_test = "=0.1.0" http.workspace = true |