test-tool: Make the default timeout be 600 seconds (10 minutes).
authorRichard Jones <rjones@redhat.com>
Wed, 14 Sep 2011 12:00:34 +0000 (13:00 +0100)
committerRichard Jones <rjones@redhat.com>
Wed, 14 Sep 2011 12:00:34 +0000 (13:00 +0100)
We could sometimes hit the 120 second timeout, eg. if the appliance
needed to be rebuilt and the machine was very slow and/or under heavy
I/O load.  10 minutes should be enough for any reasonable situation.

test-tool/libguestfs-test-tool.pod
test-tool/test-tool.c

index 5957c88..c96acb7 100644 (file)
@@ -56,9 +56,8 @@ directory to try it.
 
 =item B<--timeout N>
 
-Set the launch timeout to C<N> seconds.  The default is 120 seconds
-which does not usually need to be adjusted unless your machine is very
-slow.
+Set the launch timeout to C<N> seconds.  The default is 600 seconds
+(10 minutes) which does not usually need to be adjusted.
 
 =back
 
index 59b9d67..ca8d9b8 100644 (file)
@@ -64,7 +64,7 @@
 #define P_tmpdir "/tmp"
 #endif
 
-#define DEFAULT_TIMEOUT 120
+#define DEFAULT_TIMEOUT 600
 
 static int timeout = DEFAULT_TIMEOUT;
 static char tmpf[] = P_tmpdir "/libguestfs-test-tool-sda-XXXXXX";