Disable unwind tests in FIPS mode.

Delocate currently breaks things.

Bug: 289
Change-Id: Ia8c601b954e2dfda9bb4eccdde12dcd64e8559c7
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/37624
Commit-Queue: David Benjamin <davidben@google.com>
Commit-Queue: Adam Langley <agl@google.com>
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/test/abi_test.cc b/crypto/test/abi_test.cc
index 9844c73..6b17031 100644
--- a/crypto/test/abi_test.cc
+++ b/crypto/test/abi_test.cc
@@ -48,6 +48,11 @@
 #endif
 #endif  // X86_64 && SUPPORTS_ABI_TEST
 
+// FIPS mode breaks unwind tests. See https://crbug.com/boringssl/289.
+#if defined(BORINGSSL_FIPS)
+#undef SUPPORTS_UNWIND_TEST
+#endif
+
 
 namespace abi_test {