source: tests/example_scripts/wiki/id4.ck @ 831da18

abac0-leakabac0-mei
Last change on this file since 831da18 was 1bf0f03, checked in by Mei <mei@…>, 11 years ago

1) save a copy before fixup of tests directory

  • Property mode set to 100755
File size: 280 bytes
Line 
1#!/usr/bin/env bash
2
3# id4.ck
4r1=`grep "id has privkey 1" id4.out 2>/dev/null |wc -l`
5r2=`grep "id1 has privkey 1" id4.out 2>/dev/null |wc -l`
6r3=`grep "id2 has privkey 0" id4.out 2>/dev/null |wc -l`
7
8if [ $r1 -eq 1 -a $r2 -eq 1 -a $r3 -eq 1 ]; then
9    exit 0
10else
11    exit 1
12fi
Note: See TracBrowser for help on using the repository browser.