Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: icu46/source/test/perf/perldriver/Common.pl

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « icu46/source/test/perf/perf.sln ('k') | icu46/source/test/perf/perldriver/Dataset.pm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu46/source/test/perf/perldriver/Common.pl
===================================================================
--- icu46/source/test/perf/perldriver/Common.pl (revision 0)
+++ icu46/source/test/perf/perldriver/Common.pl (revision 0)
@@ -0,0 +1,38 @@
+#!/usr/bin/perl
+# ********************************************************************
+# * COPYRIGHT:
+# * Copyright (c) 2010, International Business Machines Corporation and
+# * others. All Rights Reserved.
+# ********************************************************************
+
+# Settings by user
+$ICULatestVersion = ""; # Change to respective version number
+$ICUPreviousVersion = ""; # Change to respective version number
+$ICUPrevious2Version = ""; # 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
+$Windows64 = 0; # Change to 1 if on Windows and running 64 bit
+# End of settings by user
+
+$CollationDataPath = $PerformanceDataPath."/collation"; # Collation Performance Data Path
+$ConversionDataPath = $PerformanceDataPath."/conversion"; # Conversion Performance Data Path
+$UDHRDataPath = $PerformanceDataPath."/udhr"; # UDHR Performance Data Path
+
+$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;
Property changes on: icu46/source/test/perf/perldriver/Common.pl
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/perf/perf.sln ('k') | icu46/source/test/perf/perldriver/Dataset.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698