mei_rt2mei_rt2_fix_1
Last change
on this file since 20eaefe was
05acf45,
checked in by Mei <mei@…>, 12 years ago
|
1) make diff skip that "Restoring file" output line that appears when
yap is in malloc mode
|
-
Property mode set to
100755
|
File size:
743 bytes
|
Rev | Line | |
---|
[abf8d5d] | 1 | #!/bin/sh |
---|
| 2 | |
---|
[646e57e] | 3 | rm -rf *.pem |
---|
| 4 | rm -rf *.der |
---|
| 5 | |
---|
[abf8d5d] | 6 | echo '---setup principals' |
---|
| 7 | env keystore=`pwd` ./setup.py 1>/dev/null 2>& 1 |
---|
| 8 | |
---|
| 9 | echo '---setup attributes' |
---|
| 10 | env keystore=`pwd` ./attr.py 1>multi.log 2>& 1 |
---|
| 11 | |
---|
| 12 | echo '---run queries' |
---|
| 13 | |
---|
| 14 | # Make prover queries |
---|
| 15 | g_cmd_sha=`grep "cmd1:" query.py |sed "s/cmd1://g" ` |
---|
| 16 | g_cmd_cn=`grep "cmd2:" query.py |sed "s/cmd2://g" ` |
---|
| 17 | |
---|
| 18 | echo '...with sha' |
---|
| 19 | eval $g_cmd_sha 2>/dev/null 1 > multi.sha |
---|
| 20 | |
---|
| 21 | echo '...with cn' |
---|
| 22 | eval $g_cmd_cn 1>multi.cn 2>&1 |
---|
| 23 | |
---|
[05acf45] | 24 | result=`diff -I "Restoring file" multi.cn multi.save 2>/dev/null` |
---|
[abf8d5d] | 25 | if [ $? -eq 0 ]; then |
---|
| 26 | if [ "$result" = "" ]; then |
---|
| 27 | echo " PASSED" |
---|
| 28 | else |
---|
| 29 | echo " ERROR:acme_multi_rt0 test result differs!!!" |
---|
| 30 | fi |
---|
| 31 | else |
---|
| 32 | echo " ERROR:acme_multi_rt0 test result differs!!!" |
---|
| 33 | fi |
---|
| 34 | |
---|
| 35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.