* tests/virsh-all: For now, ignore diagnostics and exit status,
when running all virsh commands.
+Mon Jan 12 18:55:16 +0100 2009 Jim Meyering <meyering@redhat.com>
+
+ tests: quiet virsh-all
+ * tests/virsh-all: For now, ignore diagnostics and exit status,
+ when running all virsh commands.
+
Mon Jan 12 18:55:16 +0100 2009 Jim Meyering <meyering@redhat.com>
diagnose "libvirtd --config=no-such-file"
#!/bin/sh
# blindly run each and every command listed by "virsh help"
-# Copyright (C) 2008 Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
for i in $cmds; do
echo testing $i... 1>&2
- virsh -c $test_url $i < /dev/null
+ # For now, just run the command and ignore output and exit status.
+ virsh -c $test_url $i < /dev/null > /dev/null 2>&1
done
(exit $fail); exit $fail