OLD | NEW |
| (Empty) |
1 #!/usr/bin/perl | |
2 # ******************************************************************** | |
3 # * COPYRIGHT: | |
4 # * Copyright (c) 2010-2013, International Business Machines Corporation and | |
5 # * others. All Rights Reserved. | |
6 # ******************************************************************** | |
7 | |
8 # Settings by user | |
9 $ICULatestVersion = ""; # Change to respective version number | |
10 $ICUPreviousVersion = ""; # Change to respective version number | |
11 | |
12 $PerformanceDataPath = ""; #Change to Performance Data Path | |
13 | |
14 $ICULatest = ""; # Change to path of latest ICU (e.g. /home/user/Desktop/ic
u-4.0) | |
15 $ICUPrevious = ""; # Change to path of previous ICU | |
16 | |
17 $OnWindows = 0; # Change to 1 if on Windows | |
18 $Windows64 = 0; # Change to 1 if on Windows and running 64 bit | |
19 # End of settings by user | |
20 | |
21 $CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performan
ce Data Path | |
22 $ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performa
nce Data Path | |
23 $UDHRDataPath = $PerformanceDataPath."/udhr"; # UDHR Performance Da
ta Path | |
24 | |
25 $ICUPathLatest = $ICULatest."/source/test/perf"; | |
26 $ICUPathPrevious = $ICUPrevious."/source/test/perf"; | |
27 | |
28 $WindowsPlatform = ""; | |
29 if ($Windows64) { | |
30 $WindowsPlatform = "x64"; | |
31 } else { | |
32 $WindowsPlatform = "x86"; | |
33 } | |
34 | |
35 return 1; | |
OLD | NEW |