Index: source/test/perf/normperf/NormPerf.pl |
diff --git a/source/test/perf/normperf/NormPerf.pl b/source/test/perf/normperf/NormPerf.pl |
deleted file mode 100755 |
index d673f1456f717025a3d77e904a38008b3fe14f7a..0000000000000000000000000000000000000000 |
--- a/source/test/perf/normperf/NormPerf.pl |
+++ /dev/null |
@@ -1,59 +0,0 @@ |
-#!/usr/bin/perl |
-# ******************************************************************** |
-# * Copyright (c) 2002-2013, International Business Machines |
-# * Corporation and others. All Rights Reserved. |
-# ******************************************************************** |
- |
-#use strict; |
- |
-require "../perldriver/Common.pl"; |
- |
-use lib '../perldriver'; |
- |
-use PerfFramework; |
- |
-my $options = { |
- "title"=>"Normalization performance: ICU ".$ICULatestVersion." vs. Win", |
- "headers"=>"Win ICU".$ICULatestVersion, |
- "operationIs"=>"code point", |
- "passes"=>"10", |
- "time"=>"5", |
- #"outputType"=>"HTML", |
- "dataDir"=>$CollationDataPath, |
- "outputDir"=>"../results" |
-}; |
- |
-# programs |
-# tests will be done for all the programs. Results will be stored and connected |
-my $p = "cd ".$ICULatest."/bin && ".$ICUPathLatest."/normperf/$WindowsPlatform/Release/normperf.exe -b -u"; |
- |
-my $tests = { |
- "NFC_NFD_Text", ["$p,TestWin_NFC_NFD_Text" , "$p,TestICU_NFC_NFD_Text" ], |
- "NFC_NFC_Text", ["$p,TestWin_NFC_NFC_Text" , "$p,TestICU_NFC_NFC_Text" ], |
- "NFC_Orig_Text", ["$p,TestWin_NFC_Orig_Text" , "$p,TestICU_NFC_Orig_Text"], |
- "NFD_NFD_Text", ["$p,TestWin_NFD_NFD_Text" , "$p,TestICU_NFD_NFD_Text" ], |
- "NFD_NFC_Text", ["$p,TestWin_NFD_NFC_Text" , "$p,TestICU_NFD_NFC_Text" ], |
- "NFD_Orig_Text", ["$p,TestWin_NFD_Orig_Text" , "$p,TestICU_NFD_Orig_Text"] |
-}; |
- |
-my $dataFiles = { |
- "", |
- [ |
- "TestNames_Asian.txt", |
- "TestNames_Chinese.txt", |
- "TestNames_Japanese.txt", |
- "TestNames_Japanese_h.txt", |
- "TestNames_Japanese_k.txt", |
- "TestNames_Korean.txt", |
- "TestNames_Latin.txt", |
- "TestNames_SerbianSH.txt", |
- "TestNames_SerbianSR.txt", |
- "TestNames_Thai.txt", |
- "Testnames_Russian.txt", |
- "th18057.txt", |
- "thesis.txt", |
- "vfear11a.txt", |
- ] |
-}; |
- |
-runTests($options, $tests, $dataFiles); |