diff --git a/lldb/docs/resources/test.rst b/lldb/docs/resources/test.rst --- a/lldb/docs/resources/test.rst +++ b/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 + $ ./bin/llvm-lit -sv tools/lldb/test --filter 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 -p TestInferiorCrashing.py ../packages/Python/lldbsuite/test + $ cd $lldb/test + $ python dotest.py --executable -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 functionalities/data-formatter + $ python dotest.py --executable 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