]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/perf/perldriver/Common.pl.template
ICU-59117.0.1.tar.gz
[apple/icu.git] / icuSources / test / perf / perldriver / Common.pl.template
CommitLineData
46f4442e
A
1#!/usr/bin/perl
2# ********************************************************************
f3c0d7a5
A
3# * Copyright (C) 2016 and later: Unicode, Inc. and others.
4# * License & terms of use: http://www.unicode.org/copyright.html#License
5# ********************************************************************
6# ********************************************************************
46f4442e 7# * COPYRIGHT:
57a6839d 8# * Copyright (c) 2010-2013, International Business Machines Corporation and
46f4442e
A
9# * others. All Rights Reserved.
10# ********************************************************************
11
12# Settings by user
729e4ab9
A
13$ICULatestVersion = ""; # Change to respective version number
14$ICUPreviousVersion = ""; # Change to respective version number
46f4442e
A
15
16$PerformanceDataPath = ""; #Change to Performance Data Path
17
18$ICULatest = ""; # Change to path of latest ICU (e.g. /home/user/Desktop/icu-4.0)
19$ICUPrevious = ""; # Change to path of previous ICU
46f4442e
A
20
21$OnWindows = 0; # Change to 1 if on Windows
729e4ab9 22$Windows64 = 0; # Change to 1 if on Windows and running 64 bit
46f4442e
A
23# End of settings by user
24
25$CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performance Data Path
26$ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performance Data Path
27$UDHRDataPath = $PerformanceDataPath."/udhr"; # UDHR Performance Data Path
28
29$ICUPathLatest = $ICULatest."/source/test/perf";
30$ICUPathPrevious = $ICUPrevious."/source/test/perf";
46f4442e 31
729e4ab9
A
32$WindowsPlatform = "";
33if ($Windows64) {
34 $WindowsPlatform = "x64";
35} else {
36 $WindowsPlatform = "x86";
37}
46f4442e 38
729e4ab9 39return 1;