[Lldb-commits] [PATCH] D74296: [lldb] [doc] Sample commands prefix from > to $
Jan Kratochvil via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 10 00:51:38 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd2e0fee77bc8: [lldb] [doc] Change sample commands prefix from > to $ (authored by jankratochvil).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74296/new/
https://reviews.llvm.org/D74296
Files:
lldb/docs/resources/test.rst
Index: lldb/docs/resources/test.rst
===================================================================
--- lldb/docs/resources/test.rst
+++ lldb/docs/resources/test.rst
@@ -51,8 +51,8 @@
::
- > cmake -DLLDB_TEST_USER_ARGS="-A i386 -C /path/to/custom/clang" -G Ninja
- > ninja check-lldb
+ $ cmake -DLLDB_TEST_USER_ARGS="-A i386 -C /path/to/custom/clang" -G Ninja
+ $ ninja check-lldb
Note that multiple ``-A`` and ``-C`` flags can be specified to
``LLDB_TEST_USER_ARGS``.
@@ -82,7 +82,7 @@
::
- > ./bin/llvm-lit -sv tools/lldb/test --filter <test>
+ $ ./bin/llvm-lit -sv tools/lldb/test --filter <test>
Because lit automatically scans a directory for tests, it's also possible to
@@ -90,7 +90,7 @@
::
- > ./bin/llvm-lit -sv tools/lldb/test/Shell/Commands/CommandScriptImmediateOutput
+ $ ./bin/llvm-lit -sv tools/lldb/test/Shell/Commands/CommandScriptImmediateOutput
For the SB API tests it is possible to forward arguments to ``dotest.py`` by
@@ -98,7 +98,7 @@
::
- > ./bin/llvm-lit -sv tools/lldb/test --param dotest-args='-C gcc'
+ $ ./bin/llvm-lit -sv tools/lldb/test --param dotest-args='-C gcc'
Below is an overview of running individual test in the unit and API test suites
@@ -119,12 +119,12 @@
::
- > ./bin/lldb-dotest -p TestInferiorCrashing.py
+ $ ./bin/lldb-dotest -p TestInferiorCrashing.py
::
- > cd $lldb/test
- > python dotest.py --executable <path-to-lldb> -p TestInferiorCrashing.py ../packages/Python/lldbsuite/test
+ $ cd $lldb/test
+ $ python dotest.py --executable <path-to-lldb> -p TestInferiorCrashing.py ../packages/Python/lldbsuite/test
If the test is not specified by name (e.g. if you leave the ``-p`` argument
off), all tests in that directory will be executed:
@@ -132,17 +132,17 @@
::
- > ./bin/lldb-dotest functionalities/data-formatter
+ $ ./bin/lldb-dotest functionalities/data-formatter
::
- > python dotest.py --executable <path-to-lldb> functionalities/data-formatter
+ $ python dotest.py --executable <path-to-lldb> functionalities/data-formatter
Many more options that are available. To see a list of all of them, run:
::
- > python dotest.py -h
+ $ python dotest.py -h
Running a Specific Test or Set of Tests: Unit Tests
@@ -154,14 +154,14 @@
::
- > ./tools/lldb/unittests/Host/HostTests
+ $ ./tools/lldb/unittests/Host/HostTests
To run a specific test, pass a filter, for example:
::
- > ./tools/lldb/unittests/Host/HostTests --gtest_filter=SocketTest.DomainListenConnectAccept
+ $ ./tools/lldb/unittests/Host/HostTests --gtest_filter=SocketTest.DomainListenConnectAccept
Running the Test Suite Remotely
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74296.243477.patch
Type: text/x-patch
Size: 2695 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200210/cb777b5b/attachment.bin>
More information about the lldb-commits
mailing list