source: examples/passphrase_tests/python/acme_rockets_rt0/run_test @ a59bc06

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

1) modified code all around to add support for encrypted private key for

ID credential

2) add new abac_key_t structure (abac_key.c)
3) add new keycheck option to creddy
4) add 2 new test suites

  • Property mode set to 100755
File size: 718 bytes
Line 
1#!/bin/sh
2
3echo '---setup principals'
4env keystore=`pwd` ./setup.py 1>/dev/null 2>& 1
5
6echo '---setup attributes'
7env keystore=`pwd` ./attr.py 1>rocket.log 2>& 1
8
9echo '---run queries'
10
11# Make prover queries
12g_cmd_sha=`grep "cmd1:" query.py |sed "s/cmd1://g" `
13g_cmd_cn=`grep "cmd2:" query.py |sed "s/cmd2://g" `
14
15echo '...with sha'
16eval $g_cmd_sha 2>/dev/null 1 > rocket.sha
17
18echo '...with cn'
19eval $g_cmd_cn 1>rocket.cn 2>&1
20
21result=`diff rocket.cn rocket.save 2>/dev/null`
22if [ $? -eq 0 ]; then
23    if [ "$result" = "" ]; then
24       echo "   PASSED"
25    else
26       echo "   ERROR:acme_rockets_rt0 python test result differs!!!"
27    fi
28else
29    echo "   ERROR:acme_rockets_rt0  pythontest result differs!!!"
30fi
31
32
Note: See TracBrowser for help on using the repository browser.