From 86c286354fef472c897c2e593736f45ac445bc48 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 27 Apr 2014 22:39:31 +0000 Subject: [PATCH] Enable wxCSConv UTF-7 test under Windows. Even though it doesn't work with iconv under Unix, we can still enable this test under Windows. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/strings/unicode.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/strings/unicode.cpp b/tests/strings/unicode.cpp index 2fd2ad3a6a..567a7af4c2 100644 --- a/tests/strings/unicode.cpp +++ b/tests/strings/unicode.cpp @@ -328,8 +328,9 @@ void UnicodeTestCase::ConversionUTF7() // fine, go figure) // // I have no idea how to fix this so just disable the test for now -#if 0 - d.Test(n, wxCSConv("utf-7")); +#ifdef __WINDOWS__ + wxCSConv conv("utf-7"); + d.Test(n, conv); #endif d.Test(n, wxConvUTF7); }