diff options
author | Abseil Team <absl-team@google.com> | 2021-04-20 05:26:23 (GMT) |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2021-04-21 14:24:32 (GMT) |
commit | f16d43cd38e9f2e41357dba8445f9d3a32d4e83d (patch) | |
tree | e5b2d10c68ae27e68c7758f0cf2948270681f6d1 /googletest/src | |
parent | 0d9daa99365eb00a2b81392b6ec2c8a802769ef0 (diff) | |
download | googletest-f16d43cd38e9f2e41357dba8445f9d3a32d4e83d.zip googletest-f16d43cd38e9f2e41357dba8445f9d3a32d4e83d.tar.gz googletest-f16d43cd38e9f2e41357dba8445f9d3a32d4e83d.tar.bz2 |
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
Diffstat (limited to 'googletest/src')
-rw-r--r-- | googletest/src/gtest-death-test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/src/gtest-death-test.cc b/googletest/src/gtest-death-test.cc index bf4f633..d3d5feb 100644 --- a/googletest/src/gtest-death-test.cc +++ b/googletest/src/gtest-death-test.cc @@ -953,9 +953,9 @@ int FuchsiaDeathTest::Wait() { ReadAndInterpretStatusByte(); - zx_info_process_t buffer; - status_zx = child_process_.get_info(ZX_INFO_PROCESS, &buffer, sizeof(buffer), - nullptr, nullptr); + zx_info_process_v2_t buffer; + status_zx = child_process_.get_info( + ZX_INFO_PROCESS_V2, &buffer, sizeof(buffer), nullptr, nullptr); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); GTEST_DEATH_TEST_CHECK_(buffer.flags & ZX_INFO_PROCESS_FLAG_EXITED); |