Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: icu46/source/test/perf/charperf/CharPerf.pl

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « icu46/source/test/perf/README ('k') | icu46/source/test/perf/charperf/CharPerf_r.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #!/usr/bin/perl
2 # ********************************************************************
3 # * COPYRIGHT:
4 # * Copyright (c) 2002-2008, International Business Machines Corporation and
5 # * others. All Rights Reserved.
6 # ********************************************************************
7
8
9 #use strict;
10
11 require "../perldriver/Common.pl";
12
13 use lib '../perldriver';
14
15 use PerfFramework;
16
17 my $options = {
18 "title"=>"Character property performance: ICU".$ICULatestVersion. " vs. STDLib",
19 "headers"=>"StdLib ICU".$ICULatestVersion,
20 "operationIs"=>"code point",
21 "timePerOperationIs"=>"Time per code point",
22 "passes"=>"10",
23 "time"=>"5",
24 #"outputType"=>"HTML",
25 "dataDir"=>"Not Using Data Files",
26 "outputDir"=>"../results"
27 };
28
29
30 # programs
31 # tests will be done for all the programs. Results will be stored and connected
32 my $p;
33 if ($OnWindows) {
34 $p = $ICUPathLatest."/charperf/$WindowsPlatform/Release/charperf.exe";
35 } else {
36 $p = $ICUPathLatest."/charperf/charperf";
37 }
38
39 my $tests = {
40 "isAlpha", ["$p TestStdLibIsAlpha" , "$p TestIsAlpha" ],
41 "isUpper", ["$p TestStdLibIsUpper" , "$p TestIsUpper" ],
42 "isLower", ["$p TestStdLibIsLower" , "$p TestIsLower" ],
43 "isDigit", ["$p TestStdLibIsDigit" , "$p TestIsDigit" ],
44 "isSpace", ["$p TestStdLibIsSpace" , "$p TestIsSpace" ],
45 "isAlphaNumeric", ["$p TestStdLibIsAlphaNumeric" , "$p TestIsAlphaNumeric" ],
46 "isPrint", ["$p TestStdLibIsPrint" , "$p TestIsPrint" ],
47 "isControl", ["$p TestStdLibIsControl" , "$p TestIsControl" ],
48 "toLower", ["$p TestStdLibToLower" , "$p TestToLower" ],
49 "toUpper", ["$p TestStdLibToUpper" , "$p TestToUpper" ],
50 "isWhiteSpace", ["$p TestStdLibIsWhiteSpace" , "$p TestIsWhiteSpace" ],
51 };
52
53 my $dataFiles;
54
55 runTests($options, $tests, $dataFiles);
OLDNEW
« no previous file with comments | « icu46/source/test/perf/README ('k') | icu46/source/test/perf/charperf/CharPerf_r.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698