diff options
author | Frederic Riss <friss@apple.com> | 2019-08-22 21:44:10 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2019-08-22 21:44:10 +0000 |
commit | f88dfd8309b4f4852de657c41a29620f08f171a9 (patch) | |
tree | 26a419ce2b74e304f4d3047e77c04877a5b5e071 /lldb/packages/Python/lldbsuite/test | |
parent | e2ed800d622567b35968a27f8784705fb48190f5 (diff) | |
download | bcm5719-llvm-f88dfd8309b4f4852de657c41a29620f08f171a9.tar.gz bcm5719-llvm-f88dfd8309b4f4852de657c41a29620f08f171a9.zip |
TestAppleSimulatorOSType: Pass the --standalone argument to simctl
It looks like running without this argument was supported
for legacy reasons, but a Xcode 11 beta made the argument
mandatory for our usecase.
llvm-svn: 369709
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py index ab01e44db4b..ac90f9499aa 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py @@ -46,7 +46,7 @@ class TestAppleSimulatorOSType(gdbremote_testcase.GdbRemoteTestCaseBase): self.build(dictionary={ 'EXE': exe_name, 'SDKROOT': sdkroot.strip(), 'ARCH': arch }) exe_path = self.getBuildArtifact(exe_name) - sim_launcher = subprocess.Popen(['xcrun', 'simctl', 'spawn', + sim_launcher = subprocess.Popen(['xcrun', 'simctl', 'spawn', '-s', deviceUDID, exe_path, 'print-pid', 'sleep:10'], stderr=subprocess.PIPE) |