summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-09-18 13:17:02 -0700
committerDan Albert <danalbert@google.com>2015-09-18 13:17:02 -0700
commit1af434cc022aaec09801b5a78bb1e6179b2a3f7d (patch)
tree3c0d0f320343b35c0696a34edfcd3090297104bc /README.md
parent355f3d0c12a3cca3bf8304073f81b5e0d544ac59 (diff)
Add a hint about using --no-isolate for GDB.
Change-Id: Ib9df5ed986a1c4082c9c7cd793a4d670be21ca66
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 72b7124a7..37d3f622f 100644
--- a/README.md
+++ b/README.md
@@ -257,6 +257,17 @@ First, build and run the host tests as usual (see above).
The coverage report is now available at `covreport/index.html`.
+Attaching GDB to the tests
+--------------------------
+
+Bionic's test runner will run each test in its own process by default to prevent
+tests failures from impacting other tests. This also has the added benefit of
+running them in parallel, so they are much faster.
+
+However, this also makes it difficult to run the tests under GDB. To prevent
+each test from being forked, run the tests with the flag `--no-isolate`.
+
+
LP32 ABI bugs
-------------