summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2012-12-04 23:41:35 +1300
committerRobert Collins <robertc@robertcollins.net>2012-12-04 23:41:35 +1300
commit60ebbe6477c6809d8e24b2e9499548761c33a7f8 (patch)
tree9c0d51125045633c6b4dce8a91c54d0799009cc5 /doc
parent06c92c542693770d6811c46e0439ec09aa46f878 (diff)
downloadtestrepository-60ebbe6477c6809d8e24b2e9499548761c33a7f8.tar.gz
* Test tags are now shown in failures. Of particular interest for folk debgging
cross-test interactions will be the worker-N tags which indicate which backend test process executed a given test. (Robert Collins)
Diffstat (limited to 'doc')
-rw-r--r--doc/MANUAL.txt13
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/MANUAL.txt b/doc/MANUAL.txt
index 99dfdb9..7a7b327 100644
--- a/doc/MANUAL.txt
+++ b/doc/MANUAL.txt
@@ -150,13 +150,16 @@ To find the tests that ran on a single slave::
# grab the id from that.
$ subunit-filter -s --xfail --with-tag=worker-3 < .testrepository/$lastid | subunit-ls > slave-3.list
-To find out which slave a failing test ran on::
+This will be better integrated in future.
- $ testr last
- # grab the id from that
- $ subunit-filter -m testid < .testrepository/$lastid | subunit-stats
+To find out which slave a failing test ran on just look at the 'tags' line in
+its test error::
-These things will be better integrated in future.
+ ======================================================================
+ label: testrepository.tests.ui.TestDemo.test_methodname
+ tags: foo worker-0
+ ----------------------------------------------------------------------
+ error text
Hiding tests
~~~~~~~~~~~~