X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=test-tool%2Ftest-tool.c;h=55e503f15281751550d03918da45a9be89d087ab;hb=3f54bd02fcf540f9b4b6edc93f3b6b9c7ba136bd;hp=92ad0a0541a2c6b3f12d1b86af625d104ecd16b8;hpb=4872cdc416ae5464835d9cc553e478b44d02952d;p=libguestfs.git diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c index 92ad0a0..55e503f 100644 --- a/test-tool/test-tool.c +++ b/test-tool/test-tool.c @@ -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"; @@ -162,6 +162,10 @@ main (int argc, char *argv[]) for (i = 0; environ[i] != NULL; ++i) if (STREQLEN (environ[i], "LIBGUESTFS_", 11)) printf ("%s\n", environ[i]); + for (i = 0; environ[i] != NULL; ++i) + if (STREQLEN (environ[i], "FEBOOTSTRAP_", 12)) + printf ("%s\n", environ[i]); + printf ("TMPDIR=%s\n", getenv ("TMPDIR") ? : "(not set)"); /* Create the handle and configure it. */ g = guestfs_create ();