diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-29 22:53:47 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-29 22:53:47 +0000 |
| commit | 7d2192ca7b9957cbc8968b792a7cfa49acefeaba (patch) | |
| tree | 54093c605edd1ed0e949c4dd0ae134c8a31216ab | |
| parent | f9027e554a6270ccaec1219ed2c0c194504905db (diff) | |
| download | bcm5719-llvm-7d2192ca7b9957cbc8968b792a7cfa49acefeaba.tar.gz bcm5719-llvm-7d2192ca7b9957cbc8968b792a7cfa49acefeaba.zip | |
[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
| -rw-r--r-- | lldb/unittests/Utility/FileCollectorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Utility/FileCollectorTest.cpp b/lldb/unittests/Utility/FileCollectorTest.cpp index bf49f5984b0..346a6347897 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); |

