From 8613193bbf28fe8951c900b68c4418a6fb929626 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 30 Jul 2011 20:21:40 -0400 Subject: [PATCH] [test] Fix problem with N'ko test direction Old HarfBuzz test suite always shaped as left-to-right and hence had wrong 0x14db, direction expected glyphstring for N'ko. Doh! Failures down from 92 to 88. --- test/test-shape-complex.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test-shape-complex.c b/test/test-shape-complex.c index 6e22fa5..bbb47df 100644 --- a/test/test-shape-complex.c +++ b/test/test-shape-complex.c @@ -956,19 +956,19 @@ static const test_set_t tests_nko = { }, { "", { 0x7ca, 0x7ca, 0 }, - { 0x14db, 0x14d9, 0 } + { 0x14d9, 0x14db, 0 } }, { "", { 0x7ca, 0x7fa, 0x7ca, 0 }, - { 0x14db, 0x5ec, 0x14d9, 0 } + { 0x14d9, 0x5ec, 0x14db, 0 } }, { "", { 0x7ca, 0x7f3, 0x7ca, 0 }, - { 0x14db, 0x5e7, 0x14d9, 0 } + { 0x14d9, 0x5e7, 0x14db, 0 } }, { "", { 0x7ca, 0x7f3, 0x7fa, 0x7ca, 0 }, - { 0x14db, 0x5e7, 0x5ec, 0x14d9, 0 } + { 0x14d9, 0x5ec, 0x5e7, 0x14db, 0 } }, {{0}} } -- 2.7.4