From 36255d2cb7da9e8b3acd29b7d0577f98e5bec630 Mon Sep 17 00:00:00 2001 From: Juergen Ributzka Date: Mon, 12 Aug 2019 19:51:34 +0000 Subject: [PATCH] Revert "Disable MachO TBD write tests for Windows." The underlying issue was fixed in r357759. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368611 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/TextAPI/TextStubV1Tests.cpp | 3 --- unittests/TextAPI/TextStubV2Tests.cpp | 3 --- 2 files changed, 6 deletions(-) diff --git a/unittests/TextAPI/TextStubV1Tests.cpp b/unittests/TextAPI/TextStubV1Tests.cpp index 165e58f09d5..54c0ff24199 100644 --- a/unittests/TextAPI/TextStubV1Tests.cpp +++ b/unittests/TextAPI/TextStubV1Tests.cpp @@ -147,8 +147,6 @@ TEST(TBDv1, ReadFile2) { EXPECT_EQ(0U, File->reexportedLibraries().size()); } -// Disable test for windows. -#ifndef _WIN32 TEST(TBDv1, WriteFile) { static const char tbd_v1_file3[] = "---\n" @@ -214,7 +212,6 @@ TEST(TBDv1, Platform_macOS) { EXPECT_EQ(FileType::TBD_V1, File->getFileType()); EXPECT_EQ(PlatformKind::macOS, File->getPlatform()); } -#endif // _WIN32 TEST(TBDv1, Platform_iOS) { static const char tbd_v1_platform_ios[] = "---\n" diff --git a/unittests/TextAPI/TextStubV2Tests.cpp b/unittests/TextAPI/TextStubV2Tests.cpp index b4b8ca9b91e..80c1a71b2fd 100644 --- a/unittests/TextAPI/TextStubV2Tests.cpp +++ b/unittests/TextAPI/TextStubV2Tests.cpp @@ -171,8 +171,6 @@ TEST(TBDv2, ReadFile2) { EXPECT_EQ(0U, File->reexportedLibraries().size()); } -// Disable test for windows. -#ifndef _WIN32 TEST(TBDv2, WriteFile) { static const char tbd_v2_file3[] = "--- !tapi-tbd-v2\n" @@ -224,7 +222,6 @@ TEST(TBDv2, WriteFile) { EXPECT_FALSE(Result); EXPECT_STREQ(tbd_v2_file3, Buffer.c_str()); } -#endif // _WIN32 TEST(TBDv2, Platform_macOS) { static const char tbd_v1_platform_macos[] = "--- !tapi-tbd-v2\n" -- 2.50.1