Revert "Enable strict gcstress unwind checks."
This reverts commit 022f9e555bbad95b3e8699731ca5455151dfca8a.
Reason for revert: Strict unwind checks are breaking ART run-test
`1963-add-to-dex-classloader-in-memory` in gcstress mode; disable
them until a proper fix is found for this test failure.
Test: Run `1963-add-to-dex-classloader-in-memory` with gcstress
Bug: 190805741
Change-Id: Ic9afab0e5f8571c75c8bde8270a7655a6343c35e
diff --git a/runtime/backtrace_helper.cc b/runtime/backtrace_helper.cc
index 994b0fa..74e6130 100644
--- a/runtime/backtrace_helper.cc
+++ b/runtime/backtrace_helper.cc
@@ -46,7 +46,7 @@
// Strict integrity check of the backtrace:
// All methods must have a name, all the way to "main".
-static constexpr bool kStrictUnwindChecks = true;
+static constexpr bool kStrictUnwindChecks = false;
struct UnwindHelper : public TLSData {
static constexpr const char* kTlsKey = "UnwindHelper::kTlsKey";