aboutsummaryrefslogtreecommitdiff
path: root/docs/testsuite
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-10-22 21:37:51 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-10-22 21:37:51 +0000
commit3c8b62986e0a11e131d308fb5d19c3aff6c9761b (patch)
tree5bf4d900d4c02432bc093d0cf0298253140bf52d /docs/testsuite
parent168a61a9d1551d407240395942dc9e005c47ba30 (diff)
downloadlldb-3c8b62986e0a11e131d308fb5d19c3aff6c9761b.tar.gz
Just use 'test harness', not 'test harness runtime'.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/testsuite')
-rw-r--r--docs/testsuite/a-detailed-walkthrough.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/testsuite/a-detailed-walkthrough.txt b/docs/testsuite/a-detailed-walkthrough.txt
index b29fcef28..63c610e92 100644
--- a/docs/testsuite/a-detailed-walkthrough.txt
+++ b/docs/testsuite/a-detailed-walkthrough.txt
@@ -153,12 +153,12 @@ class SettingsCommandTestCase(TestBase):
mydir = "settings"
which happens right after the SettingsCommandTestCase class declaration comes
-into place. It specifies the relative directory to the top level 'test' so that
-the test harness runtime can change its working directory in order to find the
-executable as well as the source code files. The runCmd() method is defined
-in the TestBase base class (within test/lldbtest.py) and its purpose is to pass
-the specified command to the lldb command interpreter. It's like you're typing
-the command within an interactive lldb session.
+into place. It specifies the relative directory to the top level 'test' so that
+the test harness can change its working directory in order to find the
+executable as well as the source code files. The runCmd() method is defined in
+the TestBase base class (within test/lldbtest.py) and its purpose is to pass the
+specified command to the lldb command interpreter. It's like you're typing the
+command within an interactive lldb session.
The CURRENT_EXECUTABLE_SET is an assert message defined in the lldbtest module
so that it can be reused from other test modules.