Currently, we do the following: ASSERT_EQ(child, waitpid(child, NULL, 0)) << strerror(errno); This would be nicer: PASSERT_EQ(child, waitpid(child, NULL, 0));
Currently, we do the following:
ASSERT_EQ(child, waitpid(child, NULL, 0)) << strerror(errno);
This would be nicer:
PASSERT_EQ(child, waitpid(child, NULL, 0));