Imported Upstream version 58.1
[platform/upstream/icu.git] / source / test / perf / convperf / convperf_iml.pl
1 #!/usr/bin/perl
2 #  ********************************************************************
3 #  * Copyright (C) 2016 and later: Unicode, Inc. and others.
4 #  * License & terms of use: http://www.unicode.org/copyright.html#License
5 #  ********************************************************************
6 #  ********************************************************************
7 #  * COPYRIGHT:
8 #  * Copyright (c) 2002-2013, International Business Machines Corporation and
9 #  * others. All Rights Reserved.
10 #  ********************************************************************
11
12 #use strict;
13
14 require "../perldriver/Common.pl";
15
16 use lib '../perldriver';
17
18 use PerfFramework;
19
20 # This test only works on Windows.
21 if (!$OnWindows) {
22     print "This test only works on Windows.\n";
23     exit(1);
24 }
25
26 my $options = {
27     "title"=>"Conversion Performance: ICU".$ICULatestVersion." vs. WindowsXP IMultiLanguage Interface",
28     "headers"=>"WindowsXP(IMultiLanguage2) ICU".$ICULatestVersion,
29     "operationIs"=>"code point",
30     "passes"=>"10",
31     "time"=>"5",
32     #"outputType"=>"HTML",
33     "dataDir"=>"Not Using Data Files",
34     "outputDir"=>"../results"
35 };
36
37 # programs
38 # tests will be done for all the programs. Results will be stored and connected
39 my $p = "cd ".$ICULatest."/bin && ".$ICUPathLatest."/convperf/$WindowsPlatform/Release/convperf.exe";
40
41 my $tests = { 
42     "UTF-8 From Unicode",          ["$p,TestWinIML2_UTF8_FromUnicode"  ,    "$p,TestICU_UTF8_FromUnicode" ],
43     "UTF-8 To Unicode",            ["$p,TestWinIML2_UTF8_ToUnicode"    ,    "$p,TestICU_UTF8_ToUnicode" ],
44     ####
45     "ISO-8859-1 From Unicode",     ["$p,TestWinIML2_Latin1_FromUnicode"  ,  "$p,TestICU_Latin1_FromUnicode" ],
46     "ISO-8859-1 To Unicode",       ["$p,TestWinIML2_Latin1_ToUnicode"    ,  "$p,TestICU_Latin1_ToUnicode" ],
47     ####
48     "Shift-JIS From Unicode",      ["$p,TestWinIML2_SJIS_FromUnicode"  ,    "$p,TestICU_SJIS_FromUnicode" ],
49     "Shift-JIS To Unicode",        ["$p,TestWinIML2_SJIS_ToUnicode"    ,    "$p,TestICU_SJIS_ToUnicode" ],
50     ####
51     "EUC-JP From Unicode",         ["$p,TestWinIML2_EUCJP_FromUnicode"  ,   "$p,TestICU_EUCJP_FromUnicode" ],
52     "EUC-JP To Unicode",           ["$p,TestWinIML2_EUCJP_ToUnicode"    ,   "$p,TestICU_EUCJP_ToUnicode" ],
53     ####
54     "GB2312 From Unicode",         ["$p,TestWinIML2_GB2312_FromUnicode"  ,  "$p,TestICU_GB2312_FromUnicode" ],
55     "GB2312 To Unicode",           ["$p,TestWinIML2_GB2312_ToUnicode"    ,  "$p,TestICU_GB2312_ToUnicode" ],
56     ####
57     "ISO2022KR From Unicode",      ["$p,TestWinIML2_ISO2022KR_FromUnicode",  "$p,TestICU_ISO2022KR_FromUnicode" ],
58     "ISO2022KR To Unicode",        ["$p,TestWinIML2_ISO2022KR_ToUnicode"  ,  "$p,TestICU_ISO2022KR_ToUnicode" ],
59     ####
60     "ISO2022JP From Unicode",      ["$p,TestWinIML2_ISO2022JP_FromUnicode",  "$p,TestICU_ISO2022JP_FromUnicode" ],
61     "ISO2022JP To Unicode",        ["$p,TestWinIML2_ISO2022JP_ToUnicode"  ,  "$p,TestICU_ISO2022JP_ToUnicode" ],
62 };
63
64 my $dataFiles = "";
65
66 runTests($options, $tests, $dataFiles);