diff options
author | Richard Jones <rjones@redhat.com> | 2011-09-14 13:52:39 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2011-09-14 13:52:39 +0100 |
commit | bddde7799b80b8292879634548c3c92a3cc1c044 (patch) | |
tree | 4c35833dafc9c9d904a5ba684c08ff49c6de25f7 | |
parent | cda7fa973cbdd5fc4ad3974dcc6b5ea02ec6bb44 (diff) | |
download | libguestfs-bddde7799b80b8292879634548c3c92a3cc1c044.tar.gz libguestfs-bddde7799b80b8292879634548c3c92a3cc1c044.tar.xz libguestfs-bddde7799b80b8292879634548c3c92a3cc1c044.zip |
test-tool: Display TMPDIR.
-rw-r--r-- | test-tool/test-tool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c index ca8d9b8c..55e503f1 100644 --- a/test-tool/test-tool.c +++ b/test-tool/test-tool.c @@ -165,6 +165,7 @@ main (int argc, char *argv[]) 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 (); |