From: Jonas Devlieghere Date: Tue, 29 Jan 2019 22:53:47 +0000 (+0000) Subject: [test] Use correct macro in FileCollectorTest.cpp X-Git-Tag: llvmorg-10-init~13348 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d2192ca7b9957cbc8968b792a7cfa49acefeaba;p=platform%2Fupstream%2Fllvm.git [test] Use correct macro in FileCollectorTest.cpp This test was supposed to be skipped on Windows but was using the wrong macro name. llvm-svn: 352556 --- diff --git a/lldb/unittests/Utility/FileCollectorTest.cpp b/lldb/unittests/Utility/FileCollectorTest.cpp index bf49f59..346a634 100644 --- a/lldb/unittests/Utility/FileCollectorTest.cpp +++ b/lldb/unittests/Utility/FileCollectorTest.cpp @@ -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);