Home
last modified time | relevance | path

Searched refs:output_ (Results 1 – 2 of 2) sorted by relevance

/bionic/tests/
Dutils.h215 return output_; in GetOutput()
245 output_.clear(); in Run()
249 output_.append(buf, bytes_read); in Run()
253 std::string error_msg("Test output:\n" + output_); in Run()
256 if (!std::regex_search(output_, std::regex(expected_output_regex))) { in Run()
257 …IL() << "regex " << std::quoted(expected_output_regex) << " didn't match " << std::quoted(output_); in Run()
265 std::string output_; variable
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_system_tests.cpp286 output_.clear(); in InternalExec()
302 output_.append(buffer.data(), bytes); in InternalExec()
337 ASSERT_TRUE(read_done) << "Timed out while reading data, output:\n" << output_; in InternalExec()
338 ASSERT_TRUE(done) << "Timed out waiting for waitpid, output:\n" << output_; in InternalExec()
341 << output_; in InternalExec()
342 ASSERT_EQ(expected_exit_code, WEXITSTATUS(status)) << "Output:\n" << output_; in InternalExec()
444 std::string output_; member in MallocDebugSystemTest