ICU-3445 fix tests for UCONFIG_NO_...

X-SVN-Rev: 14099
This commit is contained in:
Markus Scherer 2003-12-11 17:40:28 +00:00
parent f22ef10cc0
commit 725457bca6
9 changed files with 41 additions and 10 deletions

View file

@ -844,7 +844,9 @@ static void TestEmptyBundle(){
static void TestBinaryCollationData(){
UErrorCode status=U_ZERO_ERROR;
const char* locale="te";
#if !UCONFIG_NO_COLLATION
const char* testdatapath;
#endif
UResourceBundle *teRes = NULL;
UResourceBundle *coll=NULL;
UResourceBundle *binColl = NULL;
@ -1920,10 +1922,12 @@ static void TestResourceLevelAliasing(void) {
const UChar *string = NULL, *sequence = NULL;
const uint8_t *binary = NULL, *binSequence = NULL;
int32_t strLen = 0, seqLen = 0, binLen = 0, binSeqLen = 0;
#if !UCONFIG_NO_COLLATION
char buffer[100];
char *s;
#endif
testdatapath=loadTestData(&status);
if(U_FAILURE(status))
{

View file

@ -13,12 +13,12 @@
* created on: 2003jul11
* created by: Ram Viswanadha
*/
#if !UCONFIG_NO_IDNA
#include <stdlib.h>
#include <string.h>
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "unicode/ustring.h"
#include "unicode/uidna.h"
#include "cintltst.h"

View file

@ -13,6 +13,9 @@
* created on: 2003jul11
* created by: Ram Viswanadha
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "nfsprep.h"

View file

@ -16,9 +16,10 @@
#ifndef _NFSPREP_H
#define _NFSPREP_H
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "unicode/utypes.h"
#include "unicode/ustring.h"
#include "unicode/usprep.h"
#include <stdlib.h>

View file

@ -13,11 +13,12 @@
* created on: 2003jul11
* created by: Ram Viswanadha
*/
#if !UCONFIG_NO_IDNA
#include <stdlib.h>
#include <string.h>
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "unicode/ustring.h"
#include "unicode/usprep.h"
#include "cintltst.h"

View file

@ -13,11 +13,12 @@
* created on: 2003jul11
* created by: Ram Viswanadha
*/
#if !UCONFIG_NO_IDNA
#define USPREP_TYPE_NAMES_ARRAY
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "unicode/ustring.h"
#include "cintltst.h"
#include "unicode/usprep.h"

View file

@ -17,6 +17,18 @@
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_LEGACY_CONVERSION
/*
* Note: Turning off all of convtest.cpp if !UCONFIG_NO_LEGACY_CONVERSION
* is slightly unnecessary - it removes tests for Unicode charsets
* like UTF-8 that should work.
* However, there is no easy way for the test to detect whether a test case
* is for a Unicode charset, so it would be difficult to only exclude those.
* Also, regular testing of ICU is done with all modules on, therefore
* not testing conversion for a custom configuration like this should be ok.
*/
#include "unicode/ucnv.h"
#include "unicode/unistr.h"
#include "unicode/parsepos.h"
@ -1214,3 +1226,5 @@ ConversionTest::checkFromUnicode(ConversionCase &cc, UConverter *cnv, const char
return FALSE;
}
}
#endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */

View file

@ -20,6 +20,9 @@
#define __CONVTEST_H__
#include "unicode/utypes.h"
#if !UCONFIG_NO_LEGACY_CONVERSION
#include "unicode/ucnv.h"
#include "intltest.h"
@ -83,4 +86,6 @@ private:
cnv_open(const char *name, UErrorCode &errorCode);
};
#endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */
#endif

View file

@ -149,11 +149,13 @@ void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &nam
#endif
break;
case 11: name = "convert";
#if !UCONFIG_NO_LEGACY_CONVERSION
if (exec) {
logln("TestSuite Conversion---"); logln();
ConversionTest test;
callTest( test, par );
}
#endif
break;
default: name = ""; break;