source: examples/python_tests/basic_id/run_test @ 05acf45

mei_rt2mei_rt2_fix_1
Last change on this file since 05acf45 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: 623 bytes
Line 
1#!/bin/sh
2
3g_cmd_sha=`grep "cmd1:" id.py |sed "s/cmd1://g" `
4g_cmd_cn=`grep "cmd2:" id.py |sed "s/cmd2://g" `
5
6echo '---setup principals'
7./setup.py 1>id.log 2>&1
8
9echo '---run with sha'
10eval $g_cmd_sha 1>id.sha 2>&1
11
12echo '---run with cn'
13eval $g_cmd_cn 1>id_pre.cn 2>&1
14cat id_pre.cn |sed 's/cert .*Tom_IDKEY.pem/cert Tom_IDKEY.pem/' > id.cn
15rm -rf id_pre.cn
16result=`diff -I "Restoring file" id.cn id.save 2>/dev/null`
17if [ $? -eq 0 ]; then
18    if [ "$result" = "" ]; then
19       echo "   PASSED"
20    else
21       echo "   ERROR:id test result differs!!!"
22    fi
23else
24    echo "   ERROR:id test result differs!!!"
25fi
26
27
28
29
Note: See TracBrowser for help on using the repository browser.