~ubuntu-branches/ubuntu/utopic/kakasi/utopic

« back to all changes in this revision

Viewing changes to tests/kakasi-4

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2014-03-23 10:48:13 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140323104813-8vguwbbifn274twc
Tags: 2.3.6-0ubuntu1
* New upstream release.
* Drop 001-hyphen.patch, 0002-utf8.patch, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
 
1
#!/bin/sh
2
2
#
3
3
# test for romaji conversion (misc, when you modified romaji table, add this)
4
4
#    (require: GNU echo)
5
5
#
6
 
# $Id: kakasi-4,v 1.4 2013-10-17 06:32:32 knok Exp $
 
6
# $Id: kakasi-4,v 1.5 2014-01-28 06:55:30 knok Exp $
7
7
 
8
8
LOG=`pwd`/test-log
9
9
echo '  *** starting ' $0 >> $LOG
10
10
 
11
11
. ./env.sh
12
12
 
 
13
/bin/echo --version |grep -q GNU
 
14
STATUS=$?
 
15
if [ "$STATUS" != 0 ]
 
16
then
 
17
    echo "not GNU echo." >> $LOG
 
18
    exit 77 # SKIP
 
19
fi
 
20
 
 
21
 
13
22
romacheck () {
14
23
        KAKASI=../src/kakasi
15
24