[Lldb-commits] [lldb] 360ab00 - [lldb] Add instrumentation runtime category
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 12 16:02:55 PDT 2020
Author: Jonas Devlieghere
Date: 2020-10-12T16:02:40-07:00
New Revision: 360ab009e2b95629388cef132ebe639c120ed35e
URL: https://github.com/llvm/llvm-project/commit/360ab009e2b95629388cef132ebe639c120ed35e
DIFF: https://github.com/llvm/llvm-project/commit/360ab009e2b95629388cef132ebe639c120ed35e.diff
LOG: [lldb] Add instrumentation runtime category
Added:
lldb/test/API/functionalities/asan/.categories
lldb/test/API/functionalities/mtc/.categories
lldb/test/API/functionalities/tsan/.categories
lldb/test/API/functionalities/ubsan/.categories
Modified:
lldb/packages/Python/lldbsuite/test/test_categories.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/test/test_categories.py b/lldb/packages/Python/lldbsuite/test/test_categories.py
index dcfef5be04ac..699fcf4cb887 100644
--- a/lldb/packages/Python/lldbsuite/test/test_categories.py
+++ b/lldb/packages/Python/lldbsuite/test/test_categories.py
@@ -30,6 +30,7 @@
'expression': 'Tests related to the expression parser',
'flakey': 'Flakey test cases, i.e. tests that do not reliably pass at each execution',
'gmodules': 'Tests that can be run with -gmodules debug information',
+ 'instrumentation-runtime': 'Tests for the instrumentation runtime plugins',
'libc++': 'Test for libc++ data formatters',
'libstdcxx': 'Test for libstdcxx data formatters',
'lldb-server': 'Tests related to lldb-server',
diff --git a/lldb/test/API/functionalities/asan/.categories b/lldb/test/API/functionalities/asan/.categories
new file mode 100644
index 000000000000..c756cb124194
--- /dev/null
+++ b/lldb/test/API/functionalities/asan/.categories
@@ -0,0 +1 @@
+instrumentation-runtime
diff --git a/lldb/test/API/functionalities/mtc/.categories b/lldb/test/API/functionalities/mtc/.categories
new file mode 100644
index 000000000000..c756cb124194
--- /dev/null
+++ b/lldb/test/API/functionalities/mtc/.categories
@@ -0,0 +1 @@
+instrumentation-runtime
diff --git a/lldb/test/API/functionalities/tsan/.categories b/lldb/test/API/functionalities/tsan/.categories
new file mode 100644
index 000000000000..c756cb124194
--- /dev/null
+++ b/lldb/test/API/functionalities/tsan/.categories
@@ -0,0 +1 @@
+instrumentation-runtime
diff --git a/lldb/test/API/functionalities/ubsan/.categories b/lldb/test/API/functionalities/ubsan/.categories
new file mode 100644
index 000000000000..c756cb124194
--- /dev/null
+++ b/lldb/test/API/functionalities/ubsan/.categories
@@ -0,0 +1 @@
+instrumentation-runtime
More information about the lldb-commits
mailing list