[Lldb-commits] [lldb] [lldb][test] Disable MD5 test for old versions of Visual Studio (PR #94325)
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 4 05:11:36 PDT 2024
================
@@ -593,6 +593,10 @@ TEST_F(GDBRemoteCommunicationClientTest, WriteMemoryTags) {
"E03", false);
}
+// Prior to this verison, constructing a std::future for a type without a
+// default constructor is not possible.
+// https://developercommunity.visualstudio.com/t/c-shared-state-futuresstate-default-constructs-the/60897
+#if _MSC_VER >= 1932
----------------
mstorsjo wrote:
Shouldn't this have a `!defined(_MSC_VER) ||` part at the beginning, in order to retain the test on all non-MSVC configurations?
https://github.com/llvm/llvm-project/pull/94325
More information about the lldb-commits
mailing list