blob: 501488e087b69dee5a5139548dbae905f0fc872c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#! /bin/bash
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
########################################################################
#
# tests/ec/ecperf.sh
#
# needs to work on all Unix and Windows platforms
#
# special strings
# ---------------
# FIXME ... known problems, search for this string
# NOTE .... unexpected behavior
#
########################################################################
############################## ecperf_init #############################
# local shell function to initialize this script
########################################################################
ecperf_init()
{
SCRIPTNAME="ecperf.sh"
if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ] ; then
cd ../common
. ./init.sh
fi
SCRIPTNAME="ecperf.sh"
html_head "ecperf test"
}
ecperf_cleanup()
{
html "</TABLE><BR>"
cd ${QADIR}
. common/cleanup.sh
}
ecperf_init
ECPERF_OUT=$(ecperf 2>&1)
echo "$ECPERF_OUT"
ECPERF_OUT=`echo $ECPERF_OUT | grep -i 'failed\|Assertion failure'`
# TODO: this is a perf test we don't check for performance here but only failed
if [ -n "$ECPERF_OUT" ] ; then
html_failed "ec(perf) test"
else
html_passed "ec(perf) test"
fi
ecperf_cleanup
|