summaryrefslogtreecommitdiff
path: root/lldb/docs
diff options
context:
space:
mode:
authorDave Lee <davelee.com@gmail.com>2022-06-25 08:45:48 -0700
committerDave Lee <davelee.com@gmail.com>2022-07-10 18:56:06 -0700
commit4655400b211319c92e7561952814c7f8e82b8781 (patch)
tree2e3bf07b02cc0c83626153b7fb08bb67c9a3b809 /lldb/docs
parent6a4bc452f882b887c22a4ea741265b325ed5aa55 (diff)
downloadllvm-4655400b211319c92e7561952814c7f8e82b8781.tar.gz
[lldb] Delete more mydir references (NFC)
Diffstat (limited to 'lldb/docs')
-rw-r--r--lldb/docs/testsuite/a-detailed-walkthrough.txt16
1 files changed, 3 insertions, 13 deletions
diff --git a/lldb/docs/testsuite/a-detailed-walkthrough.txt b/lldb/docs/testsuite/a-detailed-walkthrough.txt
index 8d374d5d81ea..57c9dbce3d0a 100644
--- a/lldb/docs/testsuite/a-detailed-walkthrough.txt
+++ b/lldb/docs/testsuite/a-detailed-walkthrough.txt
@@ -110,19 +110,9 @@ executable by lldb:
exe = self.getBuildArtifact("a.out")
self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
-This is where the attribute assignment:
-
-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 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 runCmd() method is defined in the TestBase base class 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.