build: remove outdated Node.js serdes patch (#45401)
build: remove outdates Node.js serdes patch
This commit is contained in:
parent
e7fa5c709c
commit
9971087678
2 changed files with 0 additions and 35 deletions
|
@ -9,7 +9,6 @@ chore_allow_the_node_entrypoint_to_be_a_builtin_module.patch
|
|||
fix_handle_boringssl_and_openssl_incompatibilities.patch
|
||||
fix_crypto_tests_to_run_with_bssl.patch
|
||||
fix_account_for_debugger_agent_race_condition.patch
|
||||
fix_serdes_test.patch
|
||||
feat_add_uv_loop_interrupt_on_io_change_option_to_uv_loop_configure.patch
|
||||
support_v8_sandboxed_pointers.patch
|
||||
build_ensure_native_module_compilation_fails_if_not_using_a_new.patch
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Rose <nornagon@nornagon.net>
|
||||
Date: Fri, 28 Jan 2022 13:50:21 -0800
|
||||
Subject: fix serdes test
|
||||
|
||||
The V8 wire format version changed.
|
||||
|
||||
diff --git a/test/parallel/test-v8-serdes.js b/test/parallel/test-v8-serdes.js
|
||||
index c87ed89353af3b52362e8afcfbce42f1ae759774..3de1dbc5fe571b5b4abd767049eec25773268b48 100644
|
||||
--- a/test/parallel/test-v8-serdes.js
|
||||
+++ b/test/parallel/test-v8-serdes.js
|
||||
@@ -167,11 +167,11 @@ const hostObject = new (internalBinding('js_stream').JSStream)();
|
||||
|
||||
{
|
||||
// Test that an old serialized value can still be deserialized.
|
||||
- const buf = Buffer.from('ff0d6f2203666f6f5e007b01', 'hex');
|
||||
+ const buf = Buffer.from('ff0f6f2203666f6f5e007b01', 'hex');
|
||||
|
||||
const des = new v8.DefaultDeserializer(buf);
|
||||
des.readHeader();
|
||||
- assert.strictEqual(des.getWireFormatVersion(), 0x0d);
|
||||
+ assert.strictEqual(des.getWireFormatVersion(), 0x0f);
|
||||
|
||||
const value = des.readValue();
|
||||
assert.strictEqual(value, value.foo);
|
||||
@@ -206,7 +206,7 @@ const hostObject = new (internalBinding('js_stream').JSStream)();
|
||||
{
|
||||
// Unaligned Uint16Array read, with padding in the underlying array buffer.
|
||||
let buf = Buffer.alloc(32 + 9);
|
||||
- buf.write('ff0d5c0404addeefbe', 32, 'hex');
|
||||
+ buf.write('ff0e5c0404addeefbe', 32, 'hex');
|
||||
buf = buf.slice(32);
|
||||
|
||||
const expectedResult = os.endianness() === 'LE' ?
|
Loading…
Add table
Add a link
Reference in a new issue