summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/llblowfish_tut.cpp12
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
}
}