source: examples/scaling_tests/daisychain/likes_python/run_one @ 446b3ce

mei_rt2mei_rt2_fix_1
Last change on this file since 446b3ce was c3c73bd, checked in by Mei <mei@…>, 12 years ago

1) work around the hang in scaling test for freebsd8, it is because

Yap return more complete partial result from YAP_WriteBuffer call
on freebsd than on linux box

  • Property mode set to 100755
File size: 1.1 KB
Line 
1#!/bin/sh
2
3noise=$1
4
5if [ -z "$noise" ]; then
6    exit
7fi 
8
9echo "---running daisychain likes_python $noise scaling"
10
11rm -rf likes_$noise
12mkdir likes_$noise
13sed "s/#VAL#/$noise/" base/SETUP.py > likes_$noise/setup.py
14sed "s/#VAL#/$noise/" base/QUERY.py > likes_$noise/query.py
15sed "s/#VAL#/$noise/" base/ATTR.py > likes_$noise/attr.py
16sed "s/#VAL#/$noise/" base/PROVE.sh > likes_$noise/prove.sh
17
18cd likes_$noise
19chmod +x setup.py attr.py query.py
20./setup.py 1> /dev/null 2>&1
21env keystore=`pwd` ./attr.py 1> attr.log 2>& 1
22
23env keystore=`pwd` ABAC_CN=1 ./query.py 1>likes.tmp 2> likes.time
24
25if [ $noise -eq 0 ] ; then
26    result=`egrep -c "YAP query succeed" likes.tmp 2>/dev/null`
27    if [ $result -eq 202 ]; then
28       echo "   PASSED"
29## zap out all those fake BADs
30       sed -ibak 's/BAD_/fakebad_/g' likes.time
31       exit 0
32    else 
33       echo "   ERROR"
34       exit 1
35    fi
36fi
37
38s=`grep -c "YAP query succeed" likes.tmp 2>/dev/null`
39f=`grep -c "YAP query failed" likes.tmp 2>/dev/null `
40if [ $s -ne 101 ] ; then
41    echo "   ERROR"
42    exit 1
43fi
44
45if [ $f  -ne 101 ] ; then
46    echo "   ERROR"
47    exit 1
48fi
49
50echo "   PASSED"
51
Note: See TracBrowser for help on using the repository browser.