Skip to content

Commit

Permalink
Make -vsl_catchup bail on test-failure or child death
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdphk committed Mar 23, 2017
1 parent b335c0e commit 2e5da22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/varnishtest/vtc_varnish.c
Expand Up @@ -189,7 +189,7 @@ vsl_catchup(const struct varnish *v)
int vsl_idle;

vsl_idle = v->vsl_idle;
while (vsl_idle == v->vsl_idle)
while (!vtc_error && v->pid && vsl_idle == v->vsl_idle)
VTIM_sleep(0.1);
}

Expand Down

0 comments on commit 2e5da22

Please sign in to comment.