Googletest export

[googletest] Fix death test condition.

PiperOrigin-RevId: 243742424
This commit is contained in:
Abseil Team 2019-04-16 00:18:04 -04:00 committed by Alex Strelnikov
parent 6d66818066
commit 9f893b9959

View File

@ -994,7 +994,7 @@ DeathTest::TestRole FuchsiaDeathTest::AssumeRole() {
zx_handle_t child_pipe_handle;
int child_pipe_fd;
status = fdio_pipe_half2(&child_pipe_fd, &child_pipe_handle);
GTEST_DEATH_TEST_CHECK_(status != ZX_OK);
GTEST_DEATH_TEST_CHECK_(status == ZX_OK);
set_read_fd(child_pipe_fd);
// Set the pipe handle for the child.