From: Dave Lee Date: Fri, 16 Sep 2022 03:28:26 +0000 (-0700) Subject: [lldb] Improve formatting of skipped categories message (NFC) X-Git-Tag: upstream/17.0.6~33392 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab755e65629ea098cb6faa77b13ac087849ffc67;p=platform%2Fupstream%2Fllvm.git [lldb] Improve formatting of skipped categories message (NFC) --- diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 37842c9..b4b1a36 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):