]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/perf/perldriver/Common.pl
ICU-400.39.tar.gz
[apple/icu.git] / icuSources / test / perf / perldriver / Common.pl
1 #!/usr/bin/perl
2 # ********************************************************************
3 # * COPYRIGHT:
4 # * Copyright (c) 2008, International Business Machines Corporation and
5 # * others. All Rights Reserved.
6 # ********************************************************************
7
8 # Settings by user
9 $ICULatestVersion = "4.0"; # Change to respective version number
10 $ICUPreviousVersion = "3.8"; # Change to respective version number
11 $ICUPrevious2Version = "3.6"; # Change to respective version number
12
13 $PerformanceDataPath = ""; #Change to Performance Data Path
14
15 $ICULatest = ""; # Change to path of latest ICU (e.g. /home/user/Desktop/icu-4.0)
16 $ICUPrevious = ""; # Change to path of previous ICU
17 $ICUPrevious2 = ""; # Change to path of ICU before previous release
18
19 $OnWindows = 0; # Change to 1 if on Windows
20 # End of settings by user
21
22 $CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performance Data Path
23 $ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performance Data Path
24 $UDHRDataPath = $PerformanceDataPath."/udhr"; # UDHR Performance Data Path
25
26 $ICUPathLatest = $ICULatest."/source/test/perf";
27 $ICUPathPrevious = $ICUPrevious."/source/test/perf";
28 $ICUPathPrevious2 = $ICUPrevious."/source/test/perf";
29
30
31 return 1;