12e5b6d6dSopenharmony_ci#!/usr/bin/perl
22e5b6d6dSopenharmony_ci#  ********************************************************************
32e5b6d6dSopenharmony_ci#  * Copyright (C) 2016 and later: Unicode, Inc. and others.
42e5b6d6dSopenharmony_ci#  * License & terms of use: http://www.unicode.org/copyright.html
52e5b6d6dSopenharmony_ci#  ********************************************************************
62e5b6d6dSopenharmony_ci#  ********************************************************************
72e5b6d6dSopenharmony_ci#  * COPYRIGHT:
82e5b6d6dSopenharmony_ci#  * Copyright (c) 2010-2013, International Business Machines Corporation and
92e5b6d6dSopenharmony_ci#  * others. All Rights Reserved.
102e5b6d6dSopenharmony_ci#  ********************************************************************
112e5b6d6dSopenharmony_ci
122e5b6d6dSopenharmony_ci# Settings by user
132e5b6d6dSopenharmony_ci$ICULatestVersion = "";     # Change to respective version number
142e5b6d6dSopenharmony_ci$ICUPreviousVersion = "";   # Change to respective version number
152e5b6d6dSopenharmony_ci
162e5b6d6dSopenharmony_ci$PerformanceDataPath = "";          #Change to Performance Data Path
172e5b6d6dSopenharmony_ci
182e5b6d6dSopenharmony_ci$ICULatest = "";      # Change to path of latest ICU (e.g. /home/user/Desktop/icu-4.0)
192e5b6d6dSopenharmony_ci$ICUPrevious = "";    # Change to path of previous ICU
202e5b6d6dSopenharmony_ci
212e5b6d6dSopenharmony_ci$OnWindows = 0;           # Change to 1 if on Windows
222e5b6d6dSopenharmony_ci$Windows64 = 0;           # Change to 1 if on Windows and running 64 bit
232e5b6d6dSopenharmony_ci# End of settings by user
242e5b6d6dSopenharmony_ci
252e5b6d6dSopenharmony_ci$CollationDataPath = $PerformanceDataPath."/collation";    # Collation Performance Data Path
262e5b6d6dSopenharmony_ci$ConversionDataPath = $PerformanceDataPath."/conversion";  # Conversion Performance Data Path
272e5b6d6dSopenharmony_ci$UDHRDataPath = $PerformanceDataPath."/udhr";              # UDHR Performance Data Path
282e5b6d6dSopenharmony_ci
292e5b6d6dSopenharmony_ci$ICUPathLatest = $ICULatest."/source/test/perf";
302e5b6d6dSopenharmony_ci$ICUPathPrevious = $ICUPrevious."/source/test/perf";
312e5b6d6dSopenharmony_ci
322e5b6d6dSopenharmony_ci$WindowsPlatform = "";
332e5b6d6dSopenharmony_ciif ($Windows64) {
342e5b6d6dSopenharmony_ci    $WindowsPlatform = "x64";
352e5b6d6dSopenharmony_ci} else {
362e5b6d6dSopenharmony_ci    $WindowsPlatform = "x86";
372e5b6d6dSopenharmony_ci}
382e5b6d6dSopenharmony_ci
392e5b6d6dSopenharmony_cireturn 1;
40