Searched refs:test_categories (Results 1 – 6 of 6) sorted by relevance
/llvm-project/lldb/packages/Python/lldbsuite/test/ |
H A D | configuration.py | 140 def shouldSkipBecauseOfCategories(test_categories): 143 len(test_categories) == 0 144 or len(categories_list & set(test_categories)) == 0 149 if category in test_categories: 133 shouldSkipBecauseOfCategories(test_categories) global() argument
|
H A D | test_result.py | 150 test_categories = [] 151 test_categories.extend(getattr(test, "categories", [])) 155 test_categories.extend(getattr(test_method, "categories", [])) 157 test_categories.extend(self._getFileBasedCategories(test)) 159 return test_categories 260 test_categories = self.getCategoriesForTest(test) 261 for category in test_categories:
|
H A D | dotest.py | 43 from . import test_categories 328 test_categories.validate(args.categories_list, False) 335 configuration.skip_categories += test_categories.validate( 340 configuration.xfail_categories += test_categories.validate( 884 for cat in test_categories.debug_info_categories: 887 if test_categories.is_supported_on_platform(cat, platform, compiler):
|
H A D | decorators.py | 19 from . import test_categories 414 cat = test_categories.validate(cat, True)
|
H A D | lldbtest.py | 55 from . import test_categories 1761 test_categories.debug_info_categories.keys() 1769 for category, can_replicate in test_categories.debug_info_categories.items()
|
/llvm-project/lldb/unittests/Utility/ |
H A D | LogTest.cpp | 30 static constexpr Log::Category test_categories[] = { variable 35 static Log::Channel test_channel(test_categories, TestChannel::FOO);
|