| 468 | } |
| 469 | |
| 470 | static StringDataInChildProcess Read(FileHandle in) { |
| 471 | StringDataInChildProcess str; |
| 472 | EXPECT_TRUE(ReadFileExactly(in, &str.address_, sizeof(str.address_))); |
| 473 | EXPECT_TRUE( |
| 474 | ReadFileExactly(in, &str.expected_value_, sizeof(str.expected_value_))); |
| 475 | return str; |
| 476 | } |
| 477 | |
| 478 | VMAddress address() const { return address_; } |
| 479 | std::string expected_value() const { return expected_value_; } |
no test coverage detected