[Lldb-commits] [lldb] ab755e6 - [lldb] Improve formatting of skipped categories message (NFC)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 15 20:39:41 PDT 2022


Author: Dave Lee
Date: 2022-09-15T20:39:25-07:00
New Revision: ab755e65629ea098cb6faa77b13ac087849ffc67

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

LOG: [lldb] Improve formatting of skipped categories message (NFC)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 37842c96ba388..b4b1a365bbdfe 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -959,7 +959,8 @@ def run_suite():
     # Note that it's not dotest's job to clean this directory.
     lldbutil.mkdir_p(configuration.test_build_dir)
 
-    print("Skipping the following test categories: {}".format(configuration.skip_categories))
+    skipped_categories_list = ", ".join(configuration.skip_categories)
+    print("Skipping the following test categories: {}".format(skipped_categories_list))
 
     for testdir in configuration.testdirs:
         for (dirpath, dirnames, filenames) in os.walk(testdir):


        


More information about the lldb-commits mailing list