source: examples/python_tests/acme_rockets_intersection_rt0/run_test @ 163aadf

abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since 163aadf was 14eea4a, checked in by Mei <mei@…>, 11 years ago

1) update regression tests to work on bsd's 'test'/wc format

  • Property mode set to 100755
File size: 458 bytes
Line 
1#!/bin/sh
2
3rm -rf *.pem *.xml *.log *.out
4
5echo '---setup principals'
6./setup.py 1>/dev/null 2>& 1
7
8echo '---setup attributes'
9./attr.py 1>intersect.log 2>& 1
10
11echo '---run queries'
12env keystore=`pwd` ./query.py 1>intersect.out 2>& 1
13
14good=`grep success intersect.out |wc -l`
15bad=`grep failure intersect.out |wc -l`
16if [ $good -eq 1 -a $bad -eq 1 ]; then
17    echo "   PASSED"
18else
19    echo "   ERROR:acme_rockets_intersection_rt0 test result differs!!!"
20fi
Note: See TracBrowser for help on using the repository browser.