On Tue, 2014-03-11 at 06:07 -0600, Eric Blake wrote: > On 03/11/2014 04:09 AM, Marcel Apfelbaum wrote: > > From: Stefan Hajnoczi <stefa...@redhat.com> > > > > The effect is that the output will grow, but we will know > > which qtest failed. This helps when an asert is made on > > s/asert/assert/ Sure,
> > > other code and not in the test itself. > > > > Signed-off-by: Stefan Hajnoczi <stefa...@redhat.com> > > Signed-off-by: Marcel Apfelbaum <marce...@redhat.com> > > --- > > tests/Makefile | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/tests/Makefile b/tests/Makefile > > index b17d41e..a8405c8 100644 > > --- a/tests/Makefile > > +++ b/tests/Makefile > > @@ -273,7 +273,7 @@ check-help: > > @echo "changed with variable GTESTER_OPTIONS." > > > > SPEED = quick > > -GTESTER_OPTIONS = -k $(if $(V),--verbose,-q) > > +GTESTER_OPTIONS = -k #$(if $(V),--verbose,-q) > > Isn't this effectively commenting out the rest of the line? If so, why > not delete everything after the #? Hi Eric, thank you for catching this. Indeed, what I actually want to do is to remove the -q flag. I sent V3 that fixes this, Thanks, Marcel >