[test] Use correct macro in FileCollectorTest.cpp
authorJonas Devlieghere <jonas@devlieghere.com>
Tue, 29 Jan 2019 22:53:47 +0000 (22:53 +0000)
committerJonas Devlieghere <jonas@devlieghere.com>
Tue, 29 Jan 2019 22:53:47 +0000 (22:53 +0000)
This test was supposed to be skipped on Windows but was using the wrong
macro name.

llvm-svn: 352556

lldb/unittests/Utility/FileCollectorTest.cpp

index bf49f59..346a634 100644 (file)
@@ -151,7 +151,7 @@ TEST(FileCollectorTest, CopyFiles) {
   EXPECT_FALSE(ec);
 }
 
-#ifndef WINDOWS
+#ifndef _WIN32
 TEST(FileCollectorTest, Symlinks) {
   // Root where the original files live.
   ScopedDir file_root("file_root", true);