Home
last modified time | relevance | path

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

/system/core/cli-test/
Dcli-test.cpp48 std::string test_filename; member
113 static void CollectTests(std::vector<Test>* tests, const char* test_filename) { in CollectTests() argument
115 if (!android::base::Realpath(test_filename, &absolute_test_filename)) { in CollectTests()
116 Die(errno, "realpath '%s'", test_filename); in CollectTests()
120 if (!android::base::ReadFileToString(test_filename, &content)) { in CollectTests()
121 Die(errno, "couldn't read '%s'", test_filename); in CollectTests()
125 g_file = test_filename; in CollectTests()
137 test->test_filename = absolute_test_filename; in CollectTests()
218 std::string FILES = android::base::Dirname(test.test_filename) + "/files"; in RunTests()