Skip to content

Commit 19d7f88

Browse files
committed
Synchronous race conditions
If `running = false` is set earlier then the following breaks ``` test("1", syncTest) test("2", asyncTest) test("3", otherSyncTest) ``` Each one of the tests does its process.nextTick either running or pushing into pending.   This mean "1" runs and finishes synchronously, "2" runs and keeps running "3" gets added to pending because "2" is running. But then "1" empties the pending queue on process.nextTick and both "2" and "3" run in parallel.
1 parent ba72d57 commit 19d7f88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ function createHarness (conf_) {
5959
return t;
6060

6161
function onend () {
62-
running = false;
6362
if (this._progeny.length) {
6463
var unshifts = this._progeny.map(function (st) {
6564
return function () {
@@ -72,6 +71,7 @@ function createHarness (conf_) {
7271
}
7372

7473
process.nextTick(function () {
74+
running = false;
7575
if (pending.length) return pending.shift()();
7676
out.close();
7777
if (conf.exit !== false && canExit && !t._ok) {

0 commit comments

Comments
 (0)