If we're skipping a test because something *is* set, say "XXX set".
If we're skipping a test because something *isn't* set, say "XXX not
set".
(Don't say the same thing in both cases.)
}
if(!$foundit) {
- printf " %-40s: skipped (no %s)\n", $name, $configset;
+ printf " %-40s: skipped (%s not set)\n", $name, $configset;
return 0;
}
if(!$unfoundit) {
- printf " %-40s: skipped (no %s)\n", $name, $configunset;
+ printf " %-40s: skipped (%s set)\n", $name, $configunset;
return 0;
}