| 237 | } |
| 238 | |
| 239 | void DoChildCStringReadTestSetup(const char** const_empty, |
| 240 | const char** const_short, |
| 241 | const char** local_empty, |
| 242 | const char** local_short, |
| 243 | std::string* long_string) { |
| 244 | *const_empty = kConstCharEmpty; |
| 245 | *const_short = kConstCharShort; |
| 246 | *local_empty = ""; |
| 247 | *local_short = SHORT_LOCAL_STRING; |
| 248 | *long_string = MakeLongString(); |
| 249 | } |
| 250 | |
| 251 | CRASHPAD_CHILD_TEST_MAIN(ReadCStringTestChild) { |
| 252 | const char* const_empty; |
no test coverage detected