-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgtest_mem_main.cpp
55 lines (47 loc) · 1.22 KB
/
gtest_mem_main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* @file
* @copyright (c) 2013 Stephan Brenner
* @license This project is released under the MIT License.
*
* This file implements a main() function for Google Test that runs all tests
* and detects memory leaks.
*/
#include <iostream>
#include <crtdbg.h>
#include <gtest/gtest.h>
using namespace std;
using namespace testing;
namespace testing
{
class MemoryLeakDetector : public EmptyTestEventListener
{
#ifdef _DEBUG
public:
virtual void OnTestStart(const TestInfo&)
{
_CrtMemCheckpoint(&memState_);
}
virtual void OnTestEnd(const TestInfo& test_info){
if(test_info.result()->Passed())
{
_CrtMemState stateNow, stateDiff;
_CrtMemCheckpoint(&stateNow);
int diffResult = _CrtMemDifference(&stateDiff, &memState_, &stateNow);
if (diffResult)
{
FAIL() << "Memory leak of " << stateDiff.lSizes[1] << " byte(s) detected.";
}
}
}
private:
_CrtMemState memState_;
#endif // _DEBUG
};
}
GTEST_API_ int main(int argc, char **argv)
{
cout << "Running main() from gtest_mld_main.cpp" << endl;
InitGoogleTest(&argc, argv);
UnitTest::GetInstance()->listeners().Append(new MemoryLeakDetector());
return RUN_ALL_TESTS();
}