diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-03-28 15:42:01 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-30 08:14:11 -0500 |
commit | b93b63f574ccb451e82f81c6da7c39b3ecb4f24c (patch) | |
tree | c81f25e464030f479c8b1e469a4c7706be00b15b /scripts/gtester-cat | |
parent | 040b66f3f97ba9299c0be9da025a9197db654198 (diff) | |
download | qemu-b93b63f574ccb451e82f81c6da7c39b3ecb4f24c.tar.gz qemu-b93b63f574ccb451e82f81c6da7c39b3ecb4f24c.tar.bz2 qemu-b93b63f574ccb451e82f81c6da7c39b3ecb4f24c.zip |
test makefile overhaul
This introduces new test reporting infrastructure based on
gtester and gtester-report.
Also, all existing tests are moved to tests/, and tests/Makefile
is reorganized to factor out the commonalities in the rules.
Signed-off-by: Anthony Liguori <aliguori@linux.vnet.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'scripts/gtester-cat')
-rwxr-xr-x | scripts/gtester-cat | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/gtester-cat b/scripts/gtester-cat new file mode 100755 index 0000000000..061a952cad --- /dev/null +++ b/scripts/gtester-cat @@ -0,0 +1,26 @@ +#!/bin/sh +# +# Copyright IBM, Corp. 2012 +# +# Authors: +# Anthony Liguori <aliguori@us.ibm.com> +# +# This work is licensed under the terms of the GNU GPLv2 or later. +# See the COPYING file in the top-level directory. + +cat <<EOF +<?xml version="1.0"?> +<gtester> + <info> + <package>qemu</package> + <version>0.0</version> + <revision>rev</revision> + </info> +EOF + +sed \ + -e '/<?xml/d' \ + -e '/^<gtester>$/d' \ + -e '/<info>/,/<\/info>/d' \ + -e '$b' \ + -e '/^<\/gtester>$/d' "$@" |