[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Add this file that wasn't in the tarball for the initial import
# HG changeset patch # User danms@xxxxxxxxxx # Node ID 2bcfd776cb7f77ed5db707e5e2fe54cb6f3823b2 # Parent 3920df5da25e3b032ca6b27ca20254b09fea3b2b Add this file that wasn't in the tarball for the initial import diff -r 3920df5da25e -r 2bcfd776cb7f tools/xm-test/mergereport --- /dev/null Thu Nov 10 10:47:27 2005 +++ b/tools/xm-test/mergereport Thu Nov 10 10:47:34 2005 @@ -0,0 +1,25 @@ +#!/bin/sh + +# Dan Smith <danms@xxxxxxxxxx> - 16-Sep-2005 +# +# This script takes all the .report files in the current +# directory and generates a summary table, showing the +# number of PASS, FAIL, XPASS, and XFAIL tests in each +# report + + +echo " Platform | PASS | FAIL | XPASS | XFAIL |" +echo "---------------------+------+------+-------+-------+" + +for r in *.report; do + + mach=$(basename $r .report) + pass=$(cat $r | grep ' PASS' | cut -d : -f 2 | sed 's/ *//') + fail=$(cat $r | grep ' FAIL' | cut -d : -f 2 | sed 's/ *//') + xpas=$(cat $r | grep ' XPASS' | cut -d : -f 2 | sed 's/ *//') + xfal=$(cat $r | grep ' XFAIL' | cut -d : -f 2 | sed 's/ *//') + + printf "%20s | %4s | %4s | %5s | %5s |\n" "$mach" "$pass" \ + "$fail" "$xpas" "$xfal" + +done _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |