Inactivated tests that are not accurate

This commit is contained in:
Daniel Marjamäki 2007-05-08 15:23:42 +00:00
parent b80b5999c2
commit c3474c4ef9
1 changed files with 9 additions and 7 deletions

View File

@ -59,16 +59,18 @@ int main(int argc, char* argv[])
tokens = tokens_back = NULL;
Tokenize(argv[argc - 1]);
std::ofstream f("tokens.txt");
for (TOKEN *tok = tokens; tok; tok = tok->next)
f << tok->linenr << ":" << tok->str << '\n';
f.close();
//std::ofstream f("tokens.txt");
//for (TOKEN *tok = tokens; tok; tok = tok->next)
// f << tok->linenr << ":" << tok->str << '\n';
//f.close();
// Check that all class constructors are ok.
CheckConstructors();
// Temporarily inactivated to avoid any false positives
//CheckConstructors();
// Check that all private functions are called.
CheckUnusedPrivateFunctions();
// Temporarily inactivated to avoid any false positives
//CheckUnusedPrivateFunctions();
// Check that the memsets are valid.
// This function can do dangerous things if used wrong.
@ -85,7 +87,7 @@ int main(int argc, char* argv[])
// Including header
//WarningIncludeHeader();
//
// if (a) delete a;
WarningRedundantCode();
return 0;