Merge lp:~vila/bzr/837926-log-make-check-trunk into lp:bzr

Proposed by Vincent Ladeuil
Status: Merged
Approved by: Vincent Ladeuil
Approved revision: not available
Merged at revision: 6120
Proposed branch: lp:~vila/bzr/837926-log-make-check-trunk
Merge into: lp:bzr
Diff against target: 27 lines (+5/-0)
2 files modified
Makefile (+2/-0)
doc/en/release-notes/bzr-2.5.txt (+3/-0)
To merge this branch: bzr merge lp:~vila/bzr/837926-log-make-check-trunk
Reviewer Review Type Date Requested Status
bzr-core Pending
Review via email: mp+73500@code.launchpad.net

Commit message

Output time stamps while running ``make check`` to get better timings from pqm

Description of the change

Targeted to trunk to minimize risks after discussing with poolie.

To post a comment you must log in.
Revision history for this message
Vincent Ladeuil (vila) wrote :

sent to pqm by email

Revision history for this message
Vincent Ladeuil (vila) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile'
2--- Makefile 2011-05-18 15:45:07 +0000
3+++ Makefile 2011-08-31 09:40:10 +0000
4@@ -42,7 +42,9 @@
5 set -e
6 # Generate a stream for PQM to watch.
7 -$(RM) -f selftest.log
8+ echo `date` ": selftest starts" 1>&2
9 $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest --subunit $(tests) | tee selftest.log
10+ echo `date` ": selftest ends" 1>&2
11 # An empty log file should catch errors in the $(PYTHON)
12 # command above (the '|' swallow any errors since 'make'
13 # sees the 'tee' exit code for the whole line
14
15=== modified file 'doc/en/release-notes/bzr-2.5.txt'
16--- doc/en/release-notes/bzr-2.5.txt 2011-08-27 19:08:54 +0000
17+++ doc/en/release-notes/bzr-2.5.txt 2011-08-31 09:40:10 +0000
18@@ -254,6 +254,9 @@
19 allowing it to be used for modules with side-effects.
20 (Vincent Ladeuil, #712474)
21
22+* Output time stamps while running ``make check`` to get better timings from
23+ pqm. (Vincent Ladeuil, #837926)
24+
25 * `TestCaseWithMemoryTransport` is faster now: `_check_safety_net` now
26 just compares the bytes in the dirstate file to its pristine state,
27 rather than opening the WorkingTree and calling ``last_revision()``.