summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Richardson <mcr@sandelman.ca>2020-02-04 11:45:14 +0100
committerDenis Ovsienko <denis@ovsienko.info>2020-02-04 22:19:17 +0000
commit3c7bcc3d9c6576931809a90f66a49efe06ccfd35 (patch)
tree0aad47d0498d27f7820000a6aeccac42986cd415
parentc2b0fcfedef2202437e6b7d09615baa7eef4a065 (diff)
downloadtcpdump-3c7bcc3d9c6576931809a90f66a49efe06ccfd35.tar.gz
indent the message about skipped test
-rwxr-xr-xtests/TESTrun4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/TESTrun b/tests/TESTrun
index 029f28f8..fd7b24e9 100755
--- a/tests/TESTrun
+++ b/tests/TESTrun
@@ -107,12 +107,12 @@ sub runOneComplexTest {
}
if(!$foundit) {
- print "${name} ... skipped, no ${configset}\n";
+ printf " %-40s: skipped (no %s)\n", $name, $configset;
return 0;
}
if(!$unfoundit) {
- print "${name} ... skipped, ${configunset} is set\n";
+ printf " %-40s: skipped (no %s)\n", $name, $configunset;
return 0;
}