This commit is contained in:
Matt Mastracci 2024-05-15 14:40:07 -06:00 committed by GitHub
parent 2686f237f8
commit f9043140a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1351,7 +1351,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
[[package]]
name = "v8"
version = "0.91.1"
version = "0.92.0"
dependencies = [
"align-data",
"bitflags 2.5.0",

View File

@ -1,6 +1,6 @@
[package]
name = "v8"
version = "0.91.1"
version = "0.92.0"
description = "Rust bindings to V8"
readme = "README.md"
authors = ["the Deno authors"]

View File

@ -8361,11 +8361,11 @@ fn memory_pressure_notification() {
isolate.memory_pressure_notification(v8::MemoryPressureLevel::None);
}
// Flaky on aarch64-qemu (Stack corruption).
#[cfg(not(target_os = "android"))]
#[test]
fn clear_kept_objects() {
let _setup_guard = setup::parallel_test();
// This test is flaky when run in parallel because it might end up triggering a GC on
// some other test's data
let _setup_guard = setup::sequential_test();
let isolate = &mut v8::Isolate::new(Default::default());
isolate.set_microtasks_policy(v8::MicrotasksPolicy::Explicit);