X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/48b980fed3435926e0b3a8d72ecb58be703a1c7a..729e4ab9bc6618bc3d8a898e575df7f4019e29ca:/icuSources/test/perf/perldriver/Common.pl diff --git a/icuSources/test/perf/perldriver/Common.pl b/icuSources/test/perf/perldriver/Common.pl index 393446bf..29760793 100755 --- a/icuSources/test/perf/perldriver/Common.pl +++ b/icuSources/test/perf/perldriver/Common.pl @@ -1,14 +1,14 @@ #!/usr/bin/perl # ******************************************************************** # * COPYRIGHT: -# * Copyright (c) 2008, International Business Machines Corporation and +# * Copyright (c) 2010, International Business Machines Corporation and # * others. All Rights Reserved. # ******************************************************************** # Settings by user -$ICULatestVersion = "4.0"; # Change to respective version number -$ICUPreviousVersion = "3.8"; # Change to respective version number -$ICUPrevious2Version = "3.6"; # Change to respective version number +$ICULatestVersion = ""; # Change to respective version number +$ICUPreviousVersion = ""; # Change to respective version number +$ICUPrevious2Version = ""; # Change to respective version number $PerformanceDataPath = ""; #Change to Performance Data Path @@ -17,6 +17,7 @@ $ICUPrevious = ""; # Change to path of previous ICU $ICUPrevious2 = ""; # Change to path of ICU before previous release $OnWindows = 0; # Change to 1 if on Windows +$Windows64 = 0; # Change to 1 if on Windows and running 64 bit # End of settings by user $CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performance Data Path @@ -27,5 +28,11 @@ $ICUPathLatest = $ICULatest."/source/test/perf"; $ICUPathPrevious = $ICUPrevious."/source/test/perf"; $ICUPathPrevious2 = $ICUPrevious."/source/test/perf"; +$WindowsPlatform = ""; +if ($Windows64) { + $WindowsPlatform = "x64"; +} else { + $WindowsPlatform = "x86"; +} -return 1; \ No newline at end of file +return 1;