Home
last modified time | relevance | path

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

/frameworks/native/libs/input/tests/
DInputDevice_test.cpp134 std::string klPath = base::GetExecutableDirectory() + "/data/kl_with_required_fake_config.kl"; in TEST() local
135 base::Result<std::shared_ptr<KeyLayoutMap>> ret = KeyLayoutMap::load(klPath); in TEST()
136 ASSERT_FALSE(ret.ok()) << "Should not be able to load KeyLayout at " << klPath; in TEST()
142 std::string klPath = base::GetExecutableDirectory() + "/data/kl_with_required_real_config.kl"; in TEST() local
143 base::Result<std::shared_ptr<KeyLayoutMap>> ret = KeyLayoutMap::load(klPath); in TEST()
144 ASSERT_TRUE(ret.ok()) << "Cannot load KeyLayout at " << klPath; in TEST()