From 5f969602f0a0b7b161a88f7f78ae50e090822c6c Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Thu, 5 Apr 2018 22:46:39 +0000 Subject: [PATCH] [dotest] --skip-category should append and not override. llvm-svn: 329358 --- lldb/packages/Python/lldbsuite/test/dotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 41a15eb..6fa85cb 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -337,7 +337,7 @@ def parseOptionsAndInitTestdirs(): configuration.categoriesList = [] if args.skipCategories: - configuration.skipCategories = test_categories.validate( + configuration.skipCategories += test_categories.validate( args.skipCategories, False) if args.E: -- 2.7.4