/********************************************************************
* COPYRIGHT:
- * Copyright (c) 1998-2004, International Business Machines Corporation and
+ * Copyright (c) 1998-2009, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
***********************************************************************/
#include "unicode/utypes.h"
+#include "unicode/localpointer.h"
#include "itmajor.h"
#include "itutil.h"
#include "itrbnf.h"
#include "itrbnfp.h"
#include "itrbnfrt.h"
+#include "itspoof.h"
#include "normconf.h"
#include "regextst.h"
#include "tstnorm.h"
#include "icusvtst.h"
#include "testidna.h"
#include "convtest.h"
+#include "csdetest.h"
+
+extern IntlTest *createBiDiConformanceTest();
#define CASE_SUITE(id, suite) case id: \
name = #suite; \
#endif
break;
+ case 13: name = "csdet";
+ if (exec) {
+ logln("TestSuite CharsetDetection---"); logln();
+ CharsetDetectionTest test;
+ callTest(test, par);
+ }
+
+ break;
+
+ case 14:
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS && !UCONFIG_NO_NORMALIZATION && !UCONFIG_NO_FILE_IO
+ name = "spoof";
+ if (exec) {
+ logln("TestSuite SpoofDetection---"); logln();
+ IntlTestSpoof test;
+ callTest(test, par);
+ }
+#else
+ name = "skip";
+#endif
+ break;
+
+ case 15: name = "bidi";
+ if (exec) {
+ logln("TestSuite bidi---"); logln();
+ LocalPointer<IntlTest> test(createBiDiConformanceTest());
+ callTest(*test, par);
+ }
+
+ break;
+
default: name = ""; break;
}