mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-24 15:19:31 -05:00
v0.92.0 (#1479)
This commit is contained in:
parent
2686f237f8
commit
f9043140a3
3 changed files with 5 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1351,7 +1351,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "v8"
|
name = "v8"
|
||||||
version = "0.91.1"
|
version = "0.92.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"align-data",
|
"align-data",
|
||||||
"bitflags 2.5.0",
|
"bitflags 2.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "v8"
|
name = "v8"
|
||||||
version = "0.91.1"
|
version = "0.92.0"
|
||||||
description = "Rust bindings to V8"
|
description = "Rust bindings to V8"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
|
|
|
@ -8361,11 +8361,11 @@ fn memory_pressure_notification() {
|
||||||
isolate.memory_pressure_notification(v8::MemoryPressureLevel::None);
|
isolate.memory_pressure_notification(v8::MemoryPressureLevel::None);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flaky on aarch64-qemu (Stack corruption).
|
|
||||||
#[cfg(not(target_os = "android"))]
|
|
||||||
#[test]
|
#[test]
|
||||||
fn clear_kept_objects() {
|
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());
|
let isolate = &mut v8::Isolate::new(Default::default());
|
||||||
isolate.set_microtasks_policy(v8::MicrotasksPolicy::Explicit);
|
isolate.set_microtasks_policy(v8::MicrotasksPolicy::Explicit);
|
||||||
|
|
Loading…
Reference in a new issue