source: tests/example_scripts/wiki/run_test @ 3ed053d

abac0-leakabac0-meimei-idtvf-new-xml
Last change on this file since 3ed053d was ec550f7, checked in by Mei <mei@…>, 11 years ago

1) reworked how API doc is generated
2) tweak top level Makefile.am
3) loading issuer principal as side-effect of loading

an attribute credentials

4) add examples of GENI specific attribute credentials

and principal certificates into the regression testing

5) rename examples to tests

  • Property mode set to 100755
File size: 426 bytes
Line 
1#!/bin/sh
2#########
3# run_test
4#
5
6# a_run type
7a_run()
8{
9    echo "---running (wiki) $1 script"
10    ./$1.py 1 >> $1.out 2>& 1
11    ./$1.ck
12    if [ $? -eq 0 ]; then
13       echo "   PASSED"
14    else
15       echo "   FAILED"
16    fi
17    rm -rf *.pem *.out *.xml
18}
19
20a_run id1
21creddy --generate --cn newGuy
22mv newGuy_ID.pem newGuy.pem
23a_run id2
24a_run id3
25a_run id4
26a_run id5
27a_run attr1
28a_run attr2
29a_run ctxtQuery1
30a_run ctxtQuery2
Note: See TracBrowser for help on using the repository browser.