diff options
| author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-09-23 21:36:22 +0000 | 
|---|---|---|
| committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-09-23 21:36:22 +0000 | 
| commit | f89d3a7c2dc03d24857b39ad9d8a5becd25faf24 (patch) | |
| tree | 55b896118ea9d1867c4aa65fe78c22e165f9da0b /indra/test | |
| parent | afe61eb994377e25d60d0a0893510a693149c6be (diff) | |
Re-enable blowfish tests on Darwin.
Diffstat (limited to 'indra/test')
| -rw-r--r-- | indra/test/llblowfish_tut.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/indra/test/llblowfish_tut.cpp b/indra/test/llblowfish_tut.cpp index 8fe8b7a720..eb2e4ed0f8 100644 --- a/indra/test/llblowfish_tut.cpp +++ b/indra/test/llblowfish_tut.cpp @@ -93,7 +93,7 @@ namespace tut  	template<> template<>  	void blowfish_object::test<1>()  	{ -#if !LL_LINUX +#if LL_WINDOWS  		skip_fail("Blowfish only supported on Linux.");  #else  		LLUUID blank; @@ -108,13 +108,13 @@ namespace tut  		dst_len = cipher.requiredEncryptionSpace(8);  		ensure("encryption space 8",  				(dst_len == 16)  ); -#endif // !LL_LINUX +#endif // LL_WINDOWS  	}  	template<> template<>  	void blowfish_object::test<2>()  	{ -#if !LL_LINUX +#if LL_WINDOWS  		skip_fail("Blowfish only supported on Linux.");  #else  		LLUUID blank; @@ -130,13 +130,13 @@ namespace tut  		result.resize(count);  		ensure("encrypt null key", matchFile("blowfish.1.bin", result)); -#endif // !LL_LINUX +#endif // LL_WINDOWS  	}  	template<> template<>  	void blowfish_object::test<3>()  	{ -#if !LL_LINUX +#if LL_WINDOWS          skip_fail("Blowfish only supported on Linux.");  #else          // same as base64 test id @@ -153,6 +153,6 @@ namespace tut  		result.resize(count);  		ensure("encrypt real key", matchFile("blowfish.2.bin", result)); -#endif // !LL_LINUX +#endif // LL_WINDOWS  	}  } | 
