I've been building a general-purpose, OpenType ".otf"/".ttf" file parsing library that must parse at least some of the more complex tables, such as the GPOS and GSUB table. I've been using various existing OpenType font files against the parser to flush the bugs. So far so good, although it is a non-trivial amount of work to support the spec in its entirety. Mostly because many of the OpenType font file's tables, sub-tables, and even lower-level data structures have multiple formats.
But any given font file makes use of only a subset of these myriad formats. I have found the spec often to be confusing, so it's hard to get the parsing code correct. Testing is essential.
So ... is there a font file, or collection of font files, available (free or for sale) that has been designed expressly not to be a working font but rather to exercise as many OpenType parsing code paths as possible?
I've scoured the web, looked at Adobe's FDK, etc., etc., but have come up empty.