diff options
author | Davide Italiano <davide@freebsd.org> | 2018-04-05 22:46:39 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2018-04-05 22:46:39 +0000 |
commit | 5f969602f0a0b7b161a88f7f78ae50e090822c6c (patch) | |
tree | 0e4517092f53455898cf5426336ade1e1210aa93 /lldb/packages/Python/lldbsuite | |
parent | 1e95bc0f4063ea8f7e981691b901c8587a339467 (diff) | |
download | bcm5719-llvm-5f969602f0a0b7b161a88f7f78ae50e090822c6c.tar.gz bcm5719-llvm-5f969602f0a0b7b161a88f7f78ae50e090822c6c.zip |
[dotest] --skip-category should append and not override.
<rdar://problem/38566150>
llvm-svn: 329358
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 41a15ebe12b..6fa85cb147d 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: |