[Lldb-commits] [lldb] 72e68fa - [lldb][test] TestDataFormatterGenericOptional.py: remove obsolete skipIfs
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 5 03:11:13 PST 2026
Author: Michael Buch
Date: 2026-03-05T11:09:30Z
New Revision: 72e68fa73c5d09ab98d79d5f56a08a44e3ea1326
URL: https://github.com/llvm/llvm-project/commit/72e68fa73c5d09ab98d79d5f56a08a44e3ea1326
DIFF: https://github.com/llvm/llvm-project/commit/72e68fa73c5d09ab98d79d5f56a08a44e3ea1326.diff
LOG: [lldb][test] TestDataFormatterGenericOptional.py: remove obsolete skipIfs
Clang 7 and GCC 5 are pretty ancient. There's unlikely to be any bot configurations running this anymore. Lets remove it to reduce test noise.
Added:
Modified:
lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py
index 3a0d241cbe766..570be8b689a37 100644
--- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py
+++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py
@@ -99,23 +99,11 @@ def cleanup():
)
@add_test_categories(["libc++"])
- ## Clang 7.0 is the oldest Clang that can reliably parse newer libc++ versions
- ## with -std=c++17.
- @skipIf(
- oslist=no_match(["macosx"]), compiler="clang", compiler_version=["<", "7.0"]
- )
- ## We are skipping gcc version less that 5.1 since this test requires -std=c++17
- @skipIf(compiler="gcc", compiler_version=["<", "5.1"])
def test_with_run_command_libcpp(self):
self.build(dictionary={"USE_LIBCPP": 1})
self.do_test_with_run_command()
@add_test_categories(["libstdcxx"])
- ## Clang 7.0 is the oldest Clang that can reliably parse newer libc++ versions
- ## with -std=c++17.
- @skipIf(compiler="clang", compiler_version=["<", "7.0"])
- ## We are skipping gcc version less that 5.1 since this test requires -std=c++17
- @skipIf(compiler="gcc", compiler_version=["<", "5.1"])
def test_with_run_command_libstdcpp(self):
self.build(dictionary={"USE_LIBSTDCPP": 1})
self.do_test_with_run_command()
More information about the lldb-commits
mailing list