Mercurial > people > ptisnovs > daily_tests
changeset 22:908bfde106b9 draft
Added script to check JCK6 results.
author | Pavel Tisnovsky <ptisnovs@redhat.com> |
---|---|
date | Fri, 25 Apr 2014 13:38:05 +0200 |
parents | 5bf9885ea751 |
children | f89fb967f508 |
files | ChangeLog tck6/check_results.sh |
diffstat | 2 files changed, 75 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Apr 24 11:26:10 2014 +0200 +++ b/ChangeLog Fri Apr 25 13:38:05 2014 +0200 @@ -1,3 +1,8 @@ +2014-04-25 Pavel Tisnovsky <ptisnovs@redhat.com> + + * tck6/check_results.sh: + Added script to check JCK6 results. + 2014-04-24 Pavel Tisnovsky <ptisnovs@redhat.com> * tck7/sr.sh:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tck6/check_results.sh Fri Apr 25 13:38:05 2014 +0200 @@ -0,0 +1,70 @@ +#!/usr/bin/env bash + +# Daily test builder. +# +# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Red Hat +# +# This tool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This tool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with IcedTea; see the file COPYING. If not, write to the +# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA. +# +# Linking this library statically or dynamically with other modules is +# making a combined work based on this library. Thus, the terms and +# conditions of the GNU General Public License cover the whole +# combination. +# +# As a special exception, the copyright holders of this library give you +# permission to link this library with independent modules to produce an +# executable, regardless of the license terms of these independent +# modules, and to copy and distribute the resulting executable under +# terms of your choice, provided that you also meet, for each linked +# independent module, the terms and conditions of the license of that +# module. An independent module is a module which is not derived from +# or based on this library. If you modify this library, you may extend +# this exception to your version of the library, but you are not +# obligated to do so. If you do not wish to do so, delete this +# exception statement from your version. +# +# Checks test results. +# +# Author: Pavel Tisnovsky +# e-mail: ptisnovs@redhat.com + +TESTS="compiler devtools runtime" +DATE=`ls work` + +YELLOW="\\033[0;33m" +RED="\\033[0;31m" +GREEN="\\033[0;32m" +BLUE="\\033[1;34m" +MAGENTA="\\033[1;35m" +CYAN="\\033[1;36m" +RESET_C="\\033[0m" + +clear + +for date in ${DATE} +do + echo "****${date}****" + RESULTDIR="results/${date}" + for tst in $TESTS + do + echo -e "${YELLOW}$tst:${RESET_C}" + echo -e " passed: ${GREEN}`grep Passed\. ${RESULTDIR}/${tst}/text/summary.txt | wc -l`${RESET_C}" + echo -e " failed: ${RED}`grep Failed\\\\.[[:space:]] ${RESULTDIR}/${tst}/text/summary.txt | wc -l`${RESET_C}" + echo -e " error: ${BLUE}`grep Error\\\\.[[:space:]] ${RESULTDIR}/${tst}/text/summary.txt | wc -l`${RESET_C}" + done +done +#read +