From c416d0c4d9cd33e5f8c97319857513faefcd0ac9 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 22 Aug 2022 14:55:02 +0200 Subject: [PATCH] squash! test: fix DebugSymbolsTest.ReqWrapList on PPC64LE Fix cpp formatting. --- test/cctest/test_node_postmortem_metadata.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/cctest/test_node_postmortem_metadata.cc b/test/cctest/test_node_postmortem_metadata.cc index 7d5d73171d3444..8e42b8d6aaef64 100644 --- a/test/cctest/test_node_postmortem_metadata.cc +++ b/test/cctest/test_node_postmortem_metadata.cc @@ -177,8 +177,8 @@ TEST_F(DebugSymbolsTest, ReqWrapList) { volatile uintptr_t head = queue + nodedbg_offset_Environment_ReqWrapQueue__head___ListNode_ReqWrapQueue; - volatile uintptr_t tail = head + - nodedbg_offset_ListNode_ReqWrap__prev___uintptr_t; + volatile uintptr_t tail = + head + nodedbg_offset_ListNode_ReqWrap__prev___uintptr_t; tail = *reinterpret_cast(tail); auto obj_template = v8::FunctionTemplate::New(isolate_); @@ -196,8 +196,8 @@ TEST_F(DebugSymbolsTest, ReqWrapList) { // ARM64 CI machinies. for (auto it : *(*env)->req_wrap_queue()) (void) ⁢ - volatile uintptr_t last = tail + - nodedbg_offset_ListNode_ReqWrap__next___uintptr_t; + volatile uintptr_t last = + tail + nodedbg_offset_ListNode_ReqWrap__next___uintptr_t; last = *reinterpret_cast(last); volatile uintptr_t expected = reinterpret_cast(&obj);