[Lldb-commits] [lldb] b9c7e27 - Disable path-sensitive test on Windows.
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 24 15:22:19 PDT 2020
Author: Adrian Prantl
Date: 2020-04-24T15:21:54-07:00
New Revision: b9c7e276bdc42c3f3f58e494ac87c3fcce0422a2
URL: https://github.com/llvm/llvm-project/commit/b9c7e276bdc42c3f3f58e494ac87c3fcce0422a2
DIFF: https://github.com/llvm/llvm-project/commit/b9c7e276bdc42c3f3f58e494ac87c3fcce0422a2.diff
LOG: Disable path-sensitive test on Windows.
Added:
Modified:
lldb/unittests/Utility/XcodeSDKTest.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/Utility/XcodeSDKTest.cpp b/lldb/unittests/Utility/XcodeSDKTest.cpp
index 95b909e70018..0cc353aa1ff7 100644
--- a/lldb/unittests/Utility/XcodeSDKTest.cpp
+++ b/lldb/unittests/Utility/XcodeSDKTest.cpp
@@ -59,6 +59,7 @@ TEST(XcodeSDKTest, MergeTest) {
EXPECT_EQ(empty.GetString(), llvm::StringRef("MacOSX10.14.Internal.sdk"));
}
+#ifndef _WIN32
TEST(XcodeSDKTest, SDKSupportsModules) {
std::string base = "/Applications/Xcode.app/Contents/Developer/Platforms/";
EXPECT_TRUE(XcodeSDK::SDKSupportsModules(
@@ -82,6 +83,7 @@ TEST(XcodeSDKTest, SDKSupportsModules) {
XcodeSDK::Type::MacOSX,
FileSpec(base + "MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk")));
}
+#endif
TEST(XcodeSDKTest, GetCanonicalName) {
XcodeSDK::Info info;
More information about the lldb-commits
mailing list