[Lldb-commits] [lldb] 39ea3ce - [lldb] Disable TestSimulatorPlatform.py because it's causing a SIGHUP
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 21 20:00:58 PDT 2021
Author: Jonas Devlieghere
Date: 2021-04-21T20:00:51-07:00
New Revision: 39ea3ceda31cd02ef7e29bbeca74271feed3fc53
URL: https://github.com/llvm/llvm-project/commit/39ea3ceda31cd02ef7e29bbeca74271feed3fc53
DIFF: https://github.com/llvm/llvm-project/commit/39ea3ceda31cd02ef7e29bbeca74271feed3fc53.diff
LOG: [lldb] Disable TestSimulatorPlatform.py because it's causing a SIGHUP
Ever since Dave Zarzycki's patch to sort test start times based on prior
test timing data (https://reviews.llvm.org/D98179) the test suite aborts
with a SIGHUP. I don't believe his patch is to blame, but rather
uncovers an preexisting issue by making test runs more deterministic.
I was able to narrow down the issue to TestSimulatorPlatform.py. The
issue also manifests itself on the standalone bot on GreenDragon [1].
This patch disables the test until we can figure this out.
[1] http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-standalone/
rdar://76995109
Added:
Modified:
lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
Removed:
################################################################################
diff --git a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
index 3deb37742b18..301919dea3b2 100644
--- a/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
+++ b/lldb/test/API/macosx/simulator/TestSimulatorPlatform.py
@@ -42,7 +42,7 @@ def check_debugserver(self, log, expected_platform, expected_version):
if expected_version:
self.assertEquals(aout_info['min_version_os_sdk'], expected_version)
-
+ @skipIf(bugnumber="rdar://76995109")
def run_with(self, arch, os, vers, env, expected_load_command):
env_list = [env] if env else []
triple = '-'.join([arch, 'apple', os + vers] + env_list)
More information about the lldb-commits
mailing list