Home
last modified time | relevance | path

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

/external/llvm/unittests/Support/
DCommandLineTest.cpp72 cl::OptionCategory TestCategory("Test Options", "Description"); variable
91 Retrieved->setCategory(TestCategory); in TEST()
92 ASSERT_EQ(&TestCategory,Retrieved->Category) << in TEST()
143 StackOption<int> TestOption2("test-option", cl::cat(TestCategory)); in TEST()
145 ASSERT_EQ(&TestCategory,TestOption2.Category) << "Failed to assign Option " in TEST()
235 StackOption<int> TestOption2("hide-option-2", cl::cat(TestCategory)); in TEST()
237 cl::HideUnrelatedOptions(TestCategory); in TEST()
253 StackOption<int> TestOption2("multi-hide-option-2", cl::cat(TestCategory)); in TEST()
256 const cl::OptionCategory *VisibleCategories[] = {&TestCategory, in TEST()