[Lldb-commits] [lldb] e465dda - [lldb] Alphabetically sort test categories (NFC)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 12 16:02:53 PDT 2020


Author: Jonas Devlieghere
Date: 2020-10-12T16:02:40-07:00
New Revision: e465ddac880228b879b5a6549adbb9c8a7f335bf

URL: https://github.com/llvm/llvm-project/commit/e465ddac880228b879b5a6549adbb9c8a7f335bf
DIFF: https://github.com/llvm/llvm-project/commit/e465ddac880228b879b5a6549adbb9c8a7f335bf.diff

LOG: [lldb] Alphabetically sort test categories (NFC)

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/test_categories.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/test_categories.py b/lldb/packages/Python/lldbsuite/test/test_categories.py
index 177c50ee17cf..dcfef5be04ac 100644
--- a/lldb/packages/Python/lldbsuite/test/test_categories.py
+++ b/lldb/packages/Python/lldbsuite/test/test_categories.py
@@ -19,26 +19,26 @@
 ]
 
 all_categories = {
+    'basic_process': 'Basic process execution sniff tests.',
+    'cmdline': 'Tests related to the LLDB command-line interface',
+    'darwin-log': 'Darwin log tests',
     'dataformatters': 'Tests related to the type command and the data formatters subsystem',
+    'dsym': 'Tests that can be run with DSYM debug information',
     'dwarf': 'Tests that can be run with DWARF debug information',
     'dwo': 'Tests that can be run with DWO debug information',
-    'dsym': 'Tests that can be run with DSYM debug information',
-    'gmodules': 'Tests that can be run with -gmodules debug information',
+    'dyntype': 'Tests related to dynamic type support',
     'expression': 'Tests related to the expression parser',
+    'flakey': 'Flakey test cases, i.e. tests that do not reliably pass at each execution',
+    'gmodules': 'Tests that can be run with -gmodules debug information',
     'libc++': 'Test for libc++ data formatters',
     'libstdcxx': 'Test for libstdcxx data formatters',
+    'lldb-server': 'Tests related to lldb-server',
+    'lldb-vscode': 'Visual Studio Code debug adaptor tests',
     'objc': 'Tests related to the Objective-C programming language support',
     'pyapi': 'Tests related to the Python API',
-    'basic_process': 'Basic process execution sniff tests.',
-    'cmdline': 'Tests related to the LLDB command-line interface',
-    'dyntype': 'Tests related to dynamic type support',
-    'stresstest': 'Tests related to stressing lldb limits',
-    'flakey': 'Flakey test cases, i.e. tests that do not reliably pass at each execution',
-    'darwin-log': 'Darwin log tests',
     'std-module': 'Tests related to importing the std module',
+    'stresstest': 'Tests related to stressing lldb limits',
     'watchpoint': 'Watchpoint-related tests',
-    'lldb-vscode': 'Visual Studio Code debug adaptor tests',
-    'lldb-server': 'Tests related to lldb-server',
 }
 
 


        


More information about the lldb-commits mailing list