diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-08-10 17:52:45 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-08-10 17:52:45 +0000 |
commit | 98b75bec71b520a0412464cb61e302ad56c7c332 (patch) | |
tree | 8cfd009a21a79c7ed6544979415565df8561a9fc /lldb/packages/Python/lldbsuite/test/functionalities/data-formatter | |
parent | a97e4dc899d2e8acf7681b58826ab75076279783 (diff) | |
download | bcm5719-llvm-98b75bec71b520a0412464cb61e302ad56c7c332.tar.gz bcm5719-llvm-98b75bec71b520a0412464cb61e302ad56c7c332.zip |
[tests, libstdcxx] Add missing test category on the TestDataFormatterStdUniquePtr tests
Each test needs to be marked with the add_test_categories decorator individually.
llvm-svn: 339457
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/data-formatter')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py index 5d05418a8b4..f782a2a8bae 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py @@ -66,6 +66,7 @@ class StdUniquePtrDataFormatterTestCase(TestBase): @skipIfWindows # libstdcpp not ported to Windows @skipIfDarwin # doesn't compile on Darwin @skipIfwatchOS # libstdcpp not ported to watchos + @add_test_categories(["libstdcxx"]) def test_recursive_unique_ptr(self): # Tests that LLDB can handle when we have a loop in the unique_ptr # reference chain and that it correctly handles the different options |