summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-05-08 01:45:38 +0000
committerGreg Clayton <gclayton@apple.com>2012-05-08 01:45:38 +0000
commit7051231709ac438a59b5b4577b93511584885794 (patch)
tree72e0e2af6ce771c65dd9171220075b812ae95f31 /lldb/test/python_api
parentd6560a6384b9dc3c3e7189a60c117b2f0b5c0985 (diff)
downloadbcm5719-llvm-7051231709ac438a59b5b4577b93511584885794.tar.gz
bcm5719-llvm-7051231709ac438a59b5b4577b93511584885794.zip
<rdar://problem/11358639>
Switch over to the "*-apple-macosx" for desktop and "*-apple-ios" for iOS triples. Also make the selection process for auto selecting platforms based off of an arch much better. llvm-svn: 156354
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r--lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py2
-rw-r--r--lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py b/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
index e0a7815cc39..e716545ec17 100644
--- a/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
+++ b/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
@@ -21,7 +21,7 @@ class DisassembleRawDataTestCase(TestBase):
"""Test disassembling raw bytes with the API."""
# Create a target from the debugger.
- target = self.dbg.CreateTargetWithFileAndTargetTriple ("", "x86_64-apple-darwin")
+ target = self.dbg.CreateTargetWithFileAndTargetTriple ("", "x86_64")
self.assertTrue(target, VALID_TARGET)
raw_bytes = bytearray([0x48, 0x89, 0xe5])
diff --git a/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py b/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
index 275a669c32a..d2e985a12ca 100644
--- a/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
+++ b/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
@@ -21,7 +21,7 @@ class Disassemble_VST1_64(TestBase):
"""Test disassembling invalid vst1.64 raw bytes with the API."""
# Create a target from the debugger.
- target = self.dbg.CreateTargetWithFileAndTargetTriple ("", "thumbv7-apple-darwin")
+ target = self.dbg.CreateTargetWithFileAndTargetTriple ("", "thumbv7")
self.assertTrue(target, VALID_TARGET)
raw_bytes = bytearray([0xf0, 0xb5, 0x03, 0xaf,
OpenPOWER on IntegriCloud