2008-03-27 21:45:51 +00:00
|
|
|
#!/usr/bin/perl
|
2008-03-27 21:17:44 +00:00
|
|
|
# ********************************************************************
|
|
|
|
# * COPYRIGHT:
|
|
|
|
# * Copyright (c) 2008, International Business Machines Corporation and
|
|
|
|
# * others. All Rights Reserved.
|
|
|
|
# ********************************************************************
|
|
|
|
|
2008-04-07 17:38:51 +00:00
|
|
|
# Settings by user
|
2008-03-27 21:17:44 +00:00
|
|
|
$ICULatestVersion = "4.0"; # Change to respective version number
|
|
|
|
$ICUPreviousVersion = "3.8"; # Change to respective version number
|
|
|
|
$ICUPrevious2Version = "3.6"; # Change to respective version number
|
|
|
|
|
|
|
|
$PerformanceDataPath = ""; #Change to Performance Data Path
|
|
|
|
|
|
|
|
$ICULatest = ""; # Change to path of latest ICU (e.g. /home/user/Desktop/icu-4.0)
|
|
|
|
$ICUPrevious = ""; # Change to path of previous ICU
|
|
|
|
$ICUPrevious2 = ""; # Change to path of ICU before previous release
|
|
|
|
|
|
|
|
$OnWindows = 0; # Change to 1 if on Windows
|
2008-04-07 17:38:51 +00:00
|
|
|
# End of settings by user
|
2008-03-27 21:17:44 +00:00
|
|
|
|
|
|
|
$CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performance Data Path
|
|
|
|
$ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performance Data Path
|
|
|
|
$UDHRDataPath = $PerformanceDataPath."/udhr"; # UDHR Performance Data Path
|
|
|
|
|
2008-03-27 21:45:51 +00:00
|
|
|
$ICUPathLatest = $ICULatest."/source/test/perf";
|
2008-03-27 21:17:44 +00:00
|
|
|
$ICUPathPrevious = $ICUPrevious."/source/test/perf";
|
|
|
|
$ICUPathPrevious2 = $ICUPrevious."/source/test/perf";
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|