summaryrefslogtreecommitdiffstats
path: root/test-tool/test-tool.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-09-26 12:26:33 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-09-26 12:26:33 +0100
commit4f3048c6be0663c6c254a765ec5f83a7b40a8808 (patch)
tree0efa142ea2765b781f9f0db47fc8be9c785a1f3c /test-tool/test-tool.c
parentca2e65275d797864d2a5b3b3d0e115460522e5bb (diff)
downloadlibguestfs-4f3048c6be0663c6c254a765ec5f83a7b40a8808.tar.gz
libguestfs-4f3048c6be0663c6c254a765ec5f83a7b40a8808.tar.xz
libguestfs-4f3048c6be0663c6c254a765ec5f83a7b40a8808.zip
test-tool: Add prominent warning about including complete output.
Everyone ignores the documentation. Everyone ignores me even when I specifically tell them to include the complete output. Place a prominent notice at the beginning of the output.
Diffstat (limited to 'test-tool/test-tool.c')
-rw-r--r--test-tool/test-tool.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c
index 52958446..6f26e335 100644
--- a/test-tool/test-tool.c
+++ b/test-tool/test-tool.c
@@ -104,6 +104,17 @@ main (int argc, char *argv[])
struct guestfs_version *vers;
char *p;
+ /* Everyone ignores the documentation, so ... */
+ printf (" ************************************************************\n"
+ " * IMPORTANT NOTICE\n"
+ " *\n"
+ " * When reporting bugs, include the COMPLETE, UNEDITED\n"
+ " * output below in your bug report.\n"
+ " *\n"
+ " ************************************************************\n"
+ );
+ sleep (3);
+
/* Create the handle. */
g = guestfs_create ();
if (g == NULL) {