mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
Added clean-up
Clean-up statics at the end of main to avoid added noise when looking for leaks
This commit is contained in:
parent
333e6e6254
commit
dd5b9c2ae5
@ -24,14 +24,14 @@ int main (int argc, char * const argv[])
|
|||||||
int result = Catch::Main( argc, (char* const*)argv );
|
int result = Catch::Main( argc, (char* const*)argv );
|
||||||
|
|
||||||
[pool drain];
|
[pool drain];
|
||||||
return result;
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
return Catch::Main( argc, argv );
|
int result =Catch::Main( argc, argv );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Catch::Hub::cleanUp();
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif // TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|
#endif // TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|
||||||
|
@ -77,7 +77,13 @@ namespace Catch
|
|||||||
static bool advanceGeneratorsForCurrentTest
|
static bool advanceGeneratorsForCurrentTest
|
||||||
();
|
();
|
||||||
|
|
||||||
|
static void cleanUp
|
||||||
|
();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
static Hub*& singleInstance();
|
||||||
|
|
||||||
GeneratorsForTest* findGeneratorsForCurrentTest
|
GeneratorsForTest* findGeneratorsForCurrentTest
|
||||||
();
|
();
|
||||||
|
|
||||||
|
@ -32,8 +32,27 @@ namespace Catch
|
|||||||
Hub& Hub::me
|
Hub& Hub::me
|
||||||
()
|
()
|
||||||
{
|
{
|
||||||
static Hub hub;
|
Hub*& hub = singleInstance();
|
||||||
|
if( !hub )
|
||||||
|
hub = new Hub();
|
||||||
|
return *hub;
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
void Hub::cleanUp
|
||||||
|
()
|
||||||
|
{
|
||||||
|
Hub*& hub = singleInstance();
|
||||||
|
delete hub;
|
||||||
|
hub = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
Hub*& Hub::singleInstance()
|
||||||
|
{
|
||||||
|
static Hub* hub = NULL;
|
||||||
return hub;
|
return hub;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -370,7 +370,13 @@ namespace Catch
|
|||||||
static bool advanceGeneratorsForCurrentTest
|
static bool advanceGeneratorsForCurrentTest
|
||||||
();
|
();
|
||||||
|
|
||||||
|
static void cleanUp
|
||||||
|
();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
static Hub*& singleInstance();
|
||||||
|
|
||||||
GeneratorsForTest* findGeneratorsForCurrentTest
|
GeneratorsForTest* findGeneratorsForCurrentTest
|
||||||
();
|
();
|
||||||
|
|
||||||
@ -4513,8 +4519,27 @@ namespace Catch
|
|||||||
Hub& Hub::me
|
Hub& Hub::me
|
||||||
()
|
()
|
||||||
{
|
{
|
||||||
static Hub hub;
|
Hub*& hub = singleInstance();
|
||||||
|
if( !hub )
|
||||||
|
hub = new Hub();
|
||||||
|
return *hub;
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
void Hub::cleanUp
|
||||||
|
()
|
||||||
|
{
|
||||||
|
Hub*& hub = singleInstance();
|
||||||
|
delete hub;
|
||||||
|
hub = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
Hub*& Hub::singleInstance()
|
||||||
|
{
|
||||||
|
static Hub* hub = NULL;
|
||||||
return hub;
|
return hub;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
@ -6276,16 +6301,16 @@ int main (int argc, char * const argv[])
|
|||||||
int result = Catch::Main( argc, (char* const*)argv );
|
int result = Catch::Main( argc, (char* const*)argv );
|
||||||
|
|
||||||
[pool drain];
|
[pool drain];
|
||||||
return result;
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
return Catch::Main( argc, argv );
|
int result =Catch::Main( argc, argv );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Catch::Hub::cleanUp();
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//////
|
//////
|
||||||
|
Loading…
Reference in New Issue
Block a user