[Lldb-commits] [PATCH] Fix TestStubSetSID after unification in to a single lldb-server binary.

Oleksiy Vyalov ovyalov at google.com
Fri Feb 20 14:48:11 PST 2015


================
Comment at: test/tools/lldb-gdbserver/commandline/TestStubSetSID.py:18
@@ +17,3 @@
+def get_common_stub_args():
+    if 'linux' in sys.platform:
+        return ['g']
----------------
Since lldb-server is supposed to be used on all platform except OSX you may use such alternative condition:

```
return [] if 'darwin' in sys.platform else ['g']
```

http://reviews.llvm.org/D7801

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/






More information about the lldb-commits mailing list