mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-2985 Remove "using namespace" directives
This commit is contained in:
parent
79c0f3f1de
commit
8b442eac0b
20 changed files with 127 additions and 42 deletions
|
@ -32,17 +32,17 @@ int UnitTest::run(set<string> &testNames)
|
|||
if (testNames.size() > 0 && testNames.find(t->name) == testNames.end()) {
|
||||
continue;
|
||||
}
|
||||
std::cerr << "testing : " << t->name << " ..." << std::endl;
|
||||
cerr << "testing : " << t->name << " ..." << endl;
|
||||
++total;
|
||||
try {
|
||||
t->func();
|
||||
++passed;
|
||||
std::cerr << " passed." << std::endl;
|
||||
cerr << " passed." << endl;
|
||||
} catch(...) {
|
||||
}
|
||||
}
|
||||
std::cerr << "==============================" << std::endl;
|
||||
std::cerr << passed << "/" << total << " tests passed." << std::endl;
|
||||
cerr << "==============================" << endl;
|
||||
cerr << passed << "/" << total << " tests passed." << endl;
|
||||
return total - passed;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue