From e8490eb242a3ca3035fb543e9829a2f81724985b Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Mon, 8 Sep 2025 13:58:09 -0700 Subject: [PATCH] [ntcore] Disable assertions unit test (ValueDeathTest) (#8221) This likes to hang on Windows. --- ntcore/src/test/native/cpp/ValueTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntcore/src/test/native/cpp/ValueTest.cpp b/ntcore/src/test/native/cpp/ValueTest.cpp index 398f21d139..5209bbb98a 100644 --- a/ntcore/src/test/native/cpp/ValueTest.cpp +++ b/ntcore/src/test/native/cpp/ValueTest.cpp @@ -276,7 +276,7 @@ TEST_F(ValueTest, StringArray) { #ifdef NDEBUG TEST_F(ValueDeathTest, DISABLED_GetAssertions) { #else -TEST_F(ValueDeathTest, GetAssertions) { +TEST_F(ValueDeathTest, DISABLED_GetAssertions) { #endif Value v; ASSERT_DEATH((void)v.GetBoolean(), "type == NT_BOOLEAN");