~ubuntu-branches/ubuntu/precise/icu/precise

« back to all changes in this revision

Viewing changes to source/test/perf/unisetperf/draft/span8perf.sh

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2009-09-04 11:56:06 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20090904115606-sqxxuizelam5tozb
Tags: 4.2.1-3
Change install-doc target to not fail if there are subdirectories of
doc/html.  This is necessary to handle the doc/html/search directory
created by doxygen 3.6.1.  (Closes: #544799)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Copyright (c) 2007, International Business Machines Corporation and
 
3
# others. All Rights Reserved.
 
4
 
 
5
# Echo shell script commands.
 
6
set -ex
 
7
 
 
8
PERF=test/perf/unisetperf/unisetperf
 
9
# slow Bh bh Bv Bv0 B0 BvF Bvp BvpF L Bvl BvL
 
10
# --pattern [:White_Space:]
 
11
 
 
12
for file in udhr_eng.txt \
 
13
            udhr_deu.txt \
 
14
            udhr_fra.txt \
 
15
            udhr_rus.txt \
 
16
            udhr_tha.txt \
 
17
            udhr_jpn.txt \
 
18
            udhr_cmn.txt \
 
19
            udhr_jpn.html; do
 
20
  for type in slow BvF BvpF Bvl BvL; do
 
21
    $PERF SpanUTF8  --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
 
22
  done
 
23
done