Huw Davies : dwrite/tests: U+1cc8 is not an assigned codepoint, use U+1cc7 instead. Fixes test on win 8.

Alexandre Julliard julliard at winehq.org
Mon May 26 07:34:25 CDT 2014


Module: wine
Branch: master
Commit: d3d4e3a9a9c46d418c404883b9959e539be74a58
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d3d4e3a9a9c46d418c404883b9959e539be74a58

Author: Huw Davies <huw at codeweavers.com>
Date:   Fri May 23 12:40:36 2014 +0100

dwrite/tests: U+1cc8 is not an assigned codepoint, use U+1cc7 instead. Fixes test on win 8.

---

 dlls/dwrite/tests/analyzer.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dwrite/tests/analyzer.c b/dlls/dwrite/tests/analyzer.c
index 7a920b2..7ff6e56 100644
--- a/dlls/dwrite/tests/analyzer.c
+++ b/dlls/dwrite/tests/analyzer.c
@@ -716,7 +716,7 @@ static struct sa_test sa_tests[] = {
     },
     {
       /* Sundanese Supplement */
-      {0x1cc0,0x1cc5,0x1cc8,0}, 1,
+      {0x1cc0,0x1cc5,0x1cc7,0}, 1,
           { { 0, 3, DWRITE_SCRIPT_SHAPES_DEFAULT }}
     },
     {
@@ -765,7 +765,7 @@ static void test_AnalyzeScript(void)
         init_expected_sa(expected_seq, ptr);
         hr = IDWriteTextAnalyzer_AnalyzeScript(analyzer, &analysissource, 0, lstrlenW(g_source), &analysissink);
         ok(hr == S_OK, "got 0x%08x\n", hr);
-        ok_sequence(sequences, ANALYZER_ID, expected_seq[0]->sequence, "AnalyzeScript", FALSE);
+        ok_sequence(sequences, ANALYZER_ID, expected_seq[0]->sequence, wine_dbgstr_w(ptr->string), FALSE);
         ptr++;
     }
 




More information about the wine-cvs mailing list