source: examples/creddy_tests/run_test @ c00fcc3

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

1) add attribute tests
2) edit some doc

  • Property mode set to 100755
File size: 395 bytes
Line 
1#!/bin/sh
2#########
3# run_test
4#
5
6./setup.sh 1>/dev/null 2>&1
7
8# a_run type
9a_run()
10{
11    echo "---running $1 " > $1.out
12    ./$1.sh 1 >> $1.out 2>& 1
13    `./$1.ck`
14    if [ $? -eq 0 ]; then
15       echo "   creddy_tests, $1 PASSED"
16    else
17       echo "   creddy-tests, $1 FAILED"
18    fi
19}
20
21a_run verify
22a_run roles
23a_run attribute
24a_run keyid
25a_run generate
26a_run display
27a_run attribute_rule
Note: See TracBrowser for help on using the repository browser.