Remove test-shape-complex

New shaping testsuite and framework coming.
This commit is contained in:
Behdad Esfahbod 2012-01-20 17:36:10 -05:00
parent ed459bfb63
commit 66aa080033
3 changed files with 1 additions and 1243 deletions

View File

@ -49,12 +49,6 @@ test_c_CPPFLAGS += $(FREETYPE_CFLAGS)
test_cplusplus_CPPFLAGS += $(FREETYPE_CFLAGS)
endif
if HAVE_FREETYPE
TEST_PROGS += test-shape-complex
test_shape_complex_CPPFLAGS = $(AM_CPPFLAGS) $(FREETYPE_CFLAGS)
test_shape_complex_LDADD = $(LDADD) $(FREETYPE_LIBS)
endif
# Default test running environment
TESTS = $(TEST_PROGS)

File diff suppressed because it is too large Load Diff

View File

@ -35,6 +35,7 @@ def pretty_name (x):
def pretty_names (s):
s = re.sub (r"[<+>\\uU]", " ", s)
s = re.sub (r"0[xX]", " ", s)
s = [unichr (int (x, 16)) for x in re.split ('[, \n]', s) if len (x)]
return ' + '.join (pretty_name (x) for x in s)