diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2016-09-27 10:41:24 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2016-09-27 10:41:24 -0400 | 
| commit | f4ecfd9cb99703bd3d11864f069c67f38776c0d7 (patch) | |
| tree | 006efe2f16afc9080e62312d05b76830cb49c9bd | |
| parent | acbee7ffab3759fcd87e3f3be060dac8cf326b25 (diff) | |
MAINT-5232: Disable unrealistic failing checks on GetMemTotal().
| -rw-r--r-- | indra/llcorehttp/tests/test_httprequest.hpp | 31 | 
1 files changed, 14 insertions, 17 deletions
| diff --git a/indra/llcorehttp/tests/test_httprequest.hpp b/indra/llcorehttp/tests/test_httprequest.hpp index b0169bf755..6cd7960ecd 100644 --- a/indra/llcorehttp/tests/test_httprequest.hpp +++ b/indra/llcorehttp/tests/test_httprequest.hpp @@ -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 | 
