"vscode:/vscode.git/clone" did not exist on "a61b8d5c0d14663705f7fb562cd6fc3dc29345bd"
Commit f16d43cd authored by Abseil Team's avatar Abseil Team Committed by Andy Soffer
Browse files

Googletest export

This callsite was previously updated to use ZX_INFO_PROCESS_V2 as a part of a soft transition. It is now time to revert back to `ZX_INFO_PROCESS` (which is now an alias of the former). See fxbug.dev/30751 for more details.

PiperOrigin-RevId: 369370855
parent 0d9daa99
...@@ -953,9 +953,9 @@ int FuchsiaDeathTest::Wait() { ...@@ -953,9 +953,9 @@ int FuchsiaDeathTest::Wait() {
ReadAndInterpretStatusByte(); ReadAndInterpretStatusByte();
zx_info_process_t buffer; zx_info_process_v2_t buffer;
status_zx = child_process_.get_info(ZX_INFO_PROCESS, &buffer, sizeof(buffer), status_zx = child_process_.get_info(
nullptr, nullptr); ZX_INFO_PROCESS_V2, &buffer, sizeof(buffer), nullptr, nullptr);
GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK);
GTEST_DEATH_TEST_CHECK_(buffer.flags & ZX_INFO_PROCESS_FLAG_EXITED); GTEST_DEATH_TEST_CHECK_(buffer.flags & ZX_INFO_PROCESS_FLAG_EXITED);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment