aboutsummaryrefslogtreecommitdiff
path: root/lldb/docs/testsuite/a-detailed-walkthrough.txt
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2016-06-23 01:18:16 +0000
committerJason Molenda <jmolenda@apple.com>2016-06-23 01:18:16 +0000
commitcb6dae22e2984558f983b7a64c70c2b7b08793aa (patch)
tree1839dfe1f57752e090420a2cf505b4644bd55d72 /lldb/docs/testsuite/a-detailed-walkthrough.txt
parentd3d9cbf127b8470944e882ffc7b25a42727bf624 (diff)
downloadllvm-cb6dae22e2984558f983b7a64c70c2b7b08793aa.zip
llvm-cb6dae22e2984558f983b7a64c70c2b7b08793aa.tar.gz
llvm-cb6dae22e2984558f983b7a64c70c2b7b08793aa.tar.bz2
Do some minor renames of "Mac OS X" to "macOS".
There's uses of "macosx" that will be more tricky to change, like in triples (e.g. "x86_64-apple-macosx10.11") - for now I'm just updating source comments and strings printed for humans. llvm-svn: 273524
Diffstat (limited to 'lldb/docs/testsuite/a-detailed-walkthrough.txt')
-rw-r--r--lldb/docs/testsuite/a-detailed-walkthrough.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/docs/testsuite/a-detailed-walkthrough.txt b/lldb/docs/testsuite/a-detailed-walkthrough.txt
index 6b5267f..d11a5cb 100644
--- a/lldb/docs/testsuite/a-detailed-walkthrough.txt
+++ b/lldb/docs/testsuite/a-detailed-walkthrough.txt
@@ -123,7 +123,7 @@ And the test/plugins/darwin.py provides the implementation for all three build
methods using the makefile mechanism. We envision that linux plugin can use a
similar approach to accomplish the task of building the binaries.
-Mac OS X provides an additional way to manipulate archived DWARF debug symbol
+macOS provides an additional way to manipulate archived DWARF debug symbol
files and produces dSYM files. The buildDsym() instance method is used by the
test method to build the binary with dsym info. For an example of this,
see test/array_types/TestArrayTypes.py:
@@ -136,7 +136,7 @@ see test/array_types/TestArrayTypes.py:
This method is decorated with a skipUnless decorator so that it will only gets
included into the test suite if the platform it is running on is 'darwin', aka
-Mac OS X.
+macOS.
Type 'man dsymutil' for more details.