summaryrefslogtreecommitdiff
path: root/lldb/packages
diff options
context:
space:
mode:
authorDave Lee <davelee.com@gmail.com>2022-09-15 20:28:26 -0700
committerDave Lee <davelee.com@gmail.com>2022-09-15 20:39:25 -0700
commitab755e65629ea098cb6faa77b13ac087849ffc67 (patch)
tree1f60d44d39168e67c9ba51ba9c7c3efba4bb85f7 /lldb/packages
parentcbd7bc66c4f7988724d15bd9be465dbd35969281 (diff)
downloadllvm-ab755e65629ea098cb6faa77b13ac087849ffc67.tar.gz
[lldb] Improve formatting of skipped categories message (NFC)
Diffstat (limited to 'lldb/packages')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 37842c96ba38..b4b1a365bbdf 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):