ICU-7084 Fix TESTCASE redefinition compiler errors.

X-SVN-Rev: 26908
This commit is contained in:
Michael Ow 2009-11-14 22:08:42 +00:00
parent 135fc63477
commit 149255373b
3 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
name = #test; \ name = #test; \
if (exec) { \ if (exec) { \
logln(#test "---"); \ logln(#test "---"); \
logln((UnicodeString)""); \ logln(); \
test(); \ test(); \
} \ } \
break break

View File

@ -1,6 +1,6 @@
/* /*
******************************************************************************* *******************************************************************************
* Copyright (C) 2004, International Business Machines Corporation and * * Copyright (C) 2004-2009, International Business Machines Corporation and *
* others. All Rights Reserved. * * others. All Rights Reserved. *
******************************************************************************* *******************************************************************************
*/ */
@ -27,7 +27,7 @@
name = #test; \ name = #test; \
if (exec) { \ if (exec) { \
logln(#test "---"); \ logln(#test "---"); \
logln((UnicodeString)""); \ logln(); \
test(); \ test(); \
} \ } \
break break

View File

@ -21,7 +21,7 @@
name = #test; \ name = #test; \
if (exec) { \ if (exec) { \
logln(#test "---"); \ logln(#test "---"); \
logln((UnicodeString)""); \ logln(); \
test(); \ test(); \
} \ } \
break break