After the changes in 68bff4a07e3fa6c30a0c0ff6cf5f0bef95dcbd72, the tests need to be updated to account for the change in output.
Details
Details
kyua test
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
I am also checking this, but what I haven't figured out is that it seems these test cases don't execute geom utility commands with -v so it should not expect the output from verbose mode. Is there anything I missed that those test cases do enable the verbose flag?
Comment Actions
Shouldn't the root cause be fixed (geom be revert back to non-verbose mode by default) in place of fixing the regression test ?
Comment Actions
Yes. I've sent e-mail to Kirk about it, but I've not heard back yet. I've looked enough at his patch to convince myself that the new output is a bug, but I've not managed to figure out how to fix it.
Comment Actions
Sorry for my long delay.
I concur that it is my change that should be fixed, not these tests.
I believe that the correct fix is this:
diff --git a/sbin/geom/core/geom.c b/sbin/geom/core/geom.c index 2e0d8683df49..0202be9a063e 100644 --- a/sbin/geom/core/geom.c +++ b/sbin/geom/core/geom.c @@ -445,7 +445,7 @@ set_flags(struct g_command *cmd) { unsigned flags = 0; - if ((cmd->gc_flags & G_FLAG_VERBOSE) != 0) + if ((cmd->gc_flags & G_FLAG_VERBOSE) != 0 && verbose) flags |= G_FLAG_VERBOSE; return (flags);