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

Side by Side Diff: source/allinone/icucheck.bat

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « source/aclocal.m4 ('k') | source/common/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @echo off 1 @echo off
2 REM ******************************************************************** 2 REM ********************************************************************
3 REM * COPYRIGHT: 3 REM * COPYRIGHT:
4 REM * Copyright (c) 2010-2012, International Business Machines Corporation 4 REM * Copyright (c) 2010-2014, International Business Machines Corporation
5 REM * and others. All Rights Reserved. 5 REM * and others. All Rights Reserved.
6 REM ******************************************************************** 6 REM ********************************************************************
7 7
8 set ICU_ARCH=%1 8 set ICU_ARCH=%1
9 set ICU_DBRL=%2 9 set ICU_DBRL=%2
10 10
11 if "%1" == "" ( 11 if "%1" == "" (
12 echo Usage: %0 "x86 or x64" "Debug or Release" 12 echo Usage: %0 "x86 or x64" "Debug or Release"
13 exit /b 1 13 exit /b 1
14 ) 14 )
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 @echo ==== %THT% =============================================================== ========== 82 @echo ==== %THT% =============================================================== ==========
83 @cd %ICU_ICUDIR%\source\test\cintltst 83 @cd %ICU_ICUDIR%\source\test\cintltst
84 %CINTLTST_CMD% %CINTLTST_OPTS% 84 %CINTLTST_CMD% %CINTLTST_OPTS%
85 85
86 @IF NOT ERRORLEVEL 1 GOTO OK_%THT% 86 @IF NOT ERRORLEVEL 1 GOTO OK_%THT%
87 @set ICUFAILED=%ICUFAILED% %THT% 87 @set ICUFAILED=%ICUFAILED% %THT%
88 @set ICUFAILCNT=1 88 @set ICUFAILCNT=1
89 :OK_cintltst 89 :OK_cintltst
90 @set ICURUN=%ICURUN% %THT% 90 @set ICURUN=%ICURUN% %THT%
91 91
92 @set THT=letest 92 @REM (Layout is deprecated)
93 @echo ==== %THT% =============================================================== ========== 93 @REM @set THT=letest
94 @cd %ICU_ICUDIR%\source\test\letest 94 @REM @echo ==== %THT% ========================================================= ================
95 %LETST_CMD% %LETEST_OPTS% 95 @REM @cd %ICU_ICUDIR%\source\test\letest
96 @REM %LETST_CMD% %LETEST_OPTS%
96 97
97 @IF NOT ERRORLEVEL 1 GOTO OK_%THT% 98 @REM @IF NOT ERRORLEVEL 1 GOTO OK_%THT%
98 @set ICUFAILED=%ICUFAILED% %THT% 99 @REM @set ICUFAILED=%ICUFAILED% %THT%
99 @set ICUFAILCNT=1 100 @REM @set ICUFAILCNT=1
100 :OK_letest 101 @REM :OK_letest
101 @set ICURUN=%ICURUN% %THT% 102 @REM @set ICURUN=%ICURUN% %THT%
102 103
103 @echo off 104 @echo off
104 105
105 REM clean up 106 REM clean up
106 set PATH=%ICU_OPATH% 107 set PATH=%ICU_OPATH%
107 REM unset ICU_OPATH 108 REM unset ICU_OPATH
108 popd 109 popd
109 110
110 @REM done 111 @REM done
111 112
112 echo - 113 echo -
113 echo - 114 echo -
114 echo - 115 echo -
115 echo ============================================================ 116 echo ============================================================
116 echo Summary: ICU in %ICU_ICUDIR% arch=%ICU_ARCH% type=%ICU_DBRL% 117 echo Summary: ICU in %ICU_ICUDIR% arch=%ICU_ARCH% type=%ICU_DBRL%
117 echo - 118 echo -
118 echo Tests Run : %ICURUN% 119 echo Tests Run : %ICURUN%
119 120
120 if %ICUFAILCNT% == 0 ( 121 if %ICUFAILCNT% == 0 (
121 echo " - All Passed!" 122 echo " - All Passed!"
122 exit /b 0 123 exit /b 0
123 ) 124 )
124 echo Failing Tests: %ICUFAILED% 125 echo Failing Tests: %ICUFAILED%
125 echo - 126 echo -
126 echo FAILED! 127 echo FAILED!
127 128
128 exit /b 1 129 exit /b 1
OLDNEW
« no previous file with comments | « source/aclocal.m4 ('k') | source/common/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698