Ovid wrote: > If you want things to be *really* easy to run test suites in multiple > languages, do this.
another option is this: http://people.apache.org/~geoff/test-more-separately.tar.gz which illustrates how to separate planning, etc in perl but use a foreign tap producing faile - something we do all the time over in httpd land... anyway, in that tarball t/plan.t calls print qx!perl t/response.pl!; so alter that call to execute whatever shell command you like, say print qx!./response.exe!; and alter response.exe to emit tap using $language and you're all set. HTH --Geoff