mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 20:28:58 +00:00
v0.92.0 (#1479)
This commit is contained in:
parent
2686f237f8
commit
f9043140a3
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1351,7 +1351,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
||||
|
||||
[[package]]
|
||||
name = "v8"
|
||||
version = "0.91.1"
|
||||
version = "0.92.0"
|
||||
dependencies = [
|
||||
"align-data",
|
||||
"bitflags 2.5.0",
|
||||
|
@ -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"]
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user