Author: Jacob Lalonde Date: 2024-09-10T15:12:56-07:00 New Revision: 10c04d9873dbbbca26f4d996396da297b9144add
URL: https://github.com/llvm/llvm-project/commit/10c04d9873dbbbca26f4d996396da297b9144add DIFF: https://github.com/llvm/llvm-project/commit/10c04d9873dbbbca26f4d996396da297b9144add.diff LOG: [LLDB]Skip Summary Statistics Tests for Windows (#108079) Follow up to #102708, the tests are failing for windows. There is a large variance in these tests between summary strings and built in types. I'm disabling these test for windows, and will add windows specific tests as a follow up to this. Added: Modified: lldb/test/API/commands/statistics/basic/TestStats.py Removed: ################################################################################ diff --git a/lldb/test/API/commands/statistics/basic/TestStats.py b/lldb/test/API/commands/statistics/basic/TestStats.py index 03ec1693447051..a0a9eeb6493207 100644 --- a/lldb/test/API/commands/statistics/basic/TestStats.py +++ b/lldb/test/API/commands/statistics/basic/TestStats.py @@ -921,6 +921,7 @@ def test_order_of_options_do_not_matter(self): f"The order of options '{options[0]}' and '{options[1]}' should not matter", ) + @skipIfWindows def test_summary_statistics_providers(self): """ Test summary timing statistics is included in statistics dump when @@ -960,6 +961,7 @@ def test_summary_statistics_providers(self): self.assertIn("'totalTime':", summary_provider_str) self.assertIn("'type': 'python'", summary_provider_str) + @skipIfWindows def test_summary_statistics_providers_vec(self): """ Test summary timing statistics is included in statistics dump when _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits