From b7ad33b7195cb99b0cbb1c5308324d328650ca45 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Mon, 6 May 2013 21:56:23 +0000 Subject: Support command line option categories. Patch by Dan Liew! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181253 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/CommandLineTest.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'unittests/Support/CommandLineTest.cpp') diff --git a/unittests/Support/CommandLineTest.cpp b/unittests/Support/CommandLineTest.cpp index 43c8cbd123..815212ff39 100644 --- a/unittests/Support/CommandLineTest.cpp +++ b/unittests/Support/CommandLineTest.cpp @@ -66,4 +66,12 @@ TEST(CommandLineTest, ParseEnvironmentToLocalVar) { #endif // SKIP_ENVIRONMENT_TESTS +TEST(CommandLineTest, UseOptionCategory) { + cl::OptionCategory TestCategory("Test Options", "Description"); + cl::opt TestOption("test-option", cl::cat(TestCategory)); + + ASSERT_EQ(&TestCategory,TestOption.Category) << "Failed to assign Option " + "Category."; +} + } // anonymous namespace -- cgit v1.2.3-18-g5258