Mercurial > hg
view tests/test-censor2.t @ 49214:eca367970253 stable
run-tests: send the test result after freeing the channel
Sending the message about the test being "done" signals to the main thread that
a new test can be started. Before this changeset, we sent this signal before
freeing the channel, there is room for a race condition where a new test would
search for a channel before the old test freed the one it used.
This is an example of the failure it would produce:
https://foss.heptapod.net/mercurial/mercurial-devel/-/jobs/552404
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 24 May 2022 09:57:53 +0200 |
parents | 77b5a190571c |
children | 195ab99cf791 |
line wrap: on
line source
$ cat >> $HGRCPATH <<EOF > [censor] > policy=ignore > EOF $ mkdir r $ cd r $ hg init $ echo secret > target $ hg commit -Am "secret" adding target $ touch bystander $ hg commit -Am "innocent" adding bystander $ echo erased-secret > target $ hg commit -m "erased secret" $ hg censor target --config extensions.censor= -r ".^^" $ hg update ".^" 1 files updated, 0 files merged, 0 files removed, 0 files unresolved $ cat target $ hg update tip 1 files updated, 0 files merged, 0 files removed, 0 files unresolved