In my last message I ask about memory leakage. Now I need to know about test coverage. I've seen some modules that work for perl. I can put CFLAGS = -g3 -Wall -fprofile-arcs -ftest-coverage in my make file for the c library then use gcov <file less ext> and get a record of my test coverage for the c, but I worry that doing the same for the XS and attempting to use gcov on the .c file generated would not look pretty.
Any suggestions?
