[llvm] r204533 - Suppress SupportTests.LockFileManagerTest on win32 for investigating.

NAKAMURA Takumi geek4civic at gmail.com
Fri Mar 21 17:27:17 PDT 2014


Author: chapuni
Date: Fri Mar 21 19:27:17 2014
New Revision: 204533

URL: http://llvm.org/viewvc/llvm-project?rev=204533&view=rev
Log:
Suppress SupportTests.LockFileManagerTest on win32 for investigating.

Modified:
    llvm/trunk/unittests/Support/LockFileManagerTest.cpp

Modified: llvm/trunk/unittests/Support/LockFileManagerTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/LockFileManagerTest.cpp?rev=204533&r1=204532&r2=204533&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/LockFileManagerTest.cpp (original)
+++ llvm/trunk/unittests/Support/LockFileManagerTest.cpp Fri Mar 21 19:27:17 2014
@@ -44,6 +44,7 @@ TEST(LockFileManagerTest, Basic) {
   ASSERT_FALSE(EC);
 }
 
+#if !defined(_WIN32)
 TEST(LockFileManagerTest, LinkLockExists) {
   SmallString<64> TmpDir;
   error_code EC;
@@ -112,5 +113,6 @@ TEST(LockFileManagerTest, RelativePath)
 
   chdir(OrigPath);
 }
+#endif
 
 } // end anonymous namespace





More information about the llvm-commits mailing list