From 39ea3ceda31cd02ef7e29bbeca74271feed3fc53 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 21 Apr 2021 19:56:38 -0700 Subject: [PATCH] [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 --- lldb/test/API/macosx/simulator/TestSimulatorPlatform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ class TestSimulatorPlatformLaunching(TestBase): 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)