source: examples/example_scripts/runcheck @ c7df2ad

mei_rt2mei_rt2_fix_1
Last change on this file since c7df2ad 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: 397 bytes
Line 
1#!/bin/sh
2
3rm -rf allout.tmp
4
5./.runall clean 1 >/dev/null 2>&1
6./.runall setup
7
8ABAC_PROVER_PATH=`which abac_prover_yap | sed 's/\/abac_prover_yap//'`
9export ABAC_PROVER_PATH
10
11echo '\n'
12echo 'running libabac SCRIPT testing...'
13./.runall run 1> allout.tmp 2>/dev/null
14result=`diff allout.tmp allout.save`
15
16if [ "$result" = "" ]; then
17   echo "   PASSED"
18else
19   echo "   ERROR:got changes!!!"
20fi
Note: See TracBrowser for help on using the repository browser.