cppannotations/annotations/icmake/verify
2014-10-30 20:03:10 +01:00

23 lines
377 B
Text

void verifyrun(string file)
{
printf("\n"
"checking tmp/docs/latex/" + file + ":\n");
system(P_NOCHECK,
"grep -i \"overfull\\|undefined\" " + file + " | "
"fgrep -v polymorphism/undefined");
}
void verify()
{
chdir("tmp/docs/latex");
verifyrun("cplusplus.log");
verifyrun("cplusplusus.log");
exit(0);
}