Displaying 1 result from an estimated 1 matches for "7503be0".
Did you mean:
750350
2010 Jan 12
1
[PATCH] Adds the qemu log to the autotest output.
...shes running, then the output for the qemu logfile
in /var/log/libvirt/qemu/ is added to the output.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
autotest.sh | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/autotest.sh b/autotest.sh
index 7503be0..5ccdbbb 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -41,8 +41,9 @@
ME=$(basename "$0")
WORKDIR=$(mktemp -d)
+
warn() { printf '%s: %s\n' "$ME" "$*" >&2; }
-die() { warn "$*"; exit 1; }
+die() { warn "$*"; show_libvirt_log; ex...