MAINT-5232: Disable unrealistic failing checks on GetMemTotal().
parent
acbee7ffab
commit
f4ecfd9cb9
|
|
@ -729,7 +729,7 @@ void HttpRequestTestObjectType::test<7>()
|
|||
#if 0 // defined(WIN32)
|
||||
// Can't do this on any platform anymore, the LL logging system holds
|
||||
// on to memory and produces what looks like memory leaks...
|
||||
|
||||
|
||||
// printf("Old mem: %d, New mem: %d\n", mMemTotal, GetMemTotal());
|
||||
ensure("Memory usage back to that at entry", mMemTotal == GetMemTotal());
|
||||
#endif
|
||||
|
|
@ -1546,10 +1546,9 @@ void HttpRequestTestObjectType::test<14>()
|
|||
|
||||
ensure("Two handler calls on the way out", 2 == mHandlerCalls);
|
||||
|
||||
#if defined(WIN32)
|
||||
// Can only do this memory test on Windows. On other platforms,
|
||||
// the LL logging system holds on to memory and produces what looks
|
||||
// like memory leaks...
|
||||
#if 0 // defined(WIN32)
|
||||
// Can't do this on any platform anymore, the LL logging system holds
|
||||
// on to memory and produces what looks like memory leaks...
|
||||
|
||||
// printf("Old mem: %d, New mem: %d\n", mMemTotal, GetMemTotal());
|
||||
ensure("Memory usage back to that at entry", mMemTotal == GetMemTotal());
|
||||
|
|
@ -3065,12 +3064,11 @@ void HttpRequestTestObjectType::test<22>()
|
|||
|
||||
// Shut down service
|
||||
HttpRequest::destroyService();
|
||||
|
||||
#if defined(WIN32)
|
||||
// Can only do this memory test on Windows. On other platforms,
|
||||
// the LL logging system holds on to memory and produces what looks
|
||||
// like memory leaks...
|
||||
|
||||
|
||||
#if 0 // defined(WIN32)
|
||||
// Can't do this on any platform anymore, the LL logging system holds
|
||||
// on to memory and produces what looks like memory leaks...
|
||||
|
||||
// printf("Old mem: %d, New mem: %d\n", mMemTotal, GetMemTotal());
|
||||
ensure("Memory usage back to that at entry", mMemTotal == GetMemTotal());
|
||||
#endif
|
||||
|
|
@ -3195,12 +3193,11 @@ void HttpRequestTestObjectType::test<23>()
|
|||
|
||||
// Shut down service
|
||||
HttpRequest::destroyService();
|
||||
|
||||
#if defined(WIN32)
|
||||
// Can only do this memory test on Windows. On other platforms,
|
||||
// the LL logging system holds on to memory and produces what looks
|
||||
// like memory leaks...
|
||||
|
||||
|
||||
#if 0 // defined(WIN32)
|
||||
// Can't do this on any platform anymore, the LL logging system holds
|
||||
// on to memory and produces what looks like memory leaks...
|
||||
|
||||
// printf("Old mem: %d, New mem: %d\n", mMemTotal, GetMemTotal());
|
||||
ensure("Memory usage back to that at entry", mMemTotal == GetMemTotal());
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue