Searched refs:TestChannel (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | LogTest.cpp | 22 enum class TestChannel : Log::MaskType { enum 31 {{"foo"}, {"log foo"}, TestChannel::FOO}, 32 {{"bar"}, {"log bar"}, TestChannel::BAR}, 122 m_log = GetLog(TestChannel::FOO); in SetUp() 155 EXPECT_EQ(nullptr, GetLog(TestChannel::FOO)); in TEST() 160 EXPECT_NE(nullptr, GetLog(TestChannel::FOO)); in TEST() 162 EXPECT_EQ(nullptr, GetLog(TestChannel::FOO)); in TEST() 197 EXPECT_EQ(nullptr, GetLog(TestChannel::FOO)); in TEST_F() 207 EXPECT_NE(nullptr, GetLog(TestChannel::FOO | TestChannel::BAR)); in TEST_F() 226 Log *log = GetLog(TestChannel::FOO); in TEST_F() [all …]
|