[Lldb-commits] [lldb] r352556 - [test] Use correct macro in FileCollectorTest.cpp
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 29 14:53:47 PST 2019
Author: jdevlieghere
Date: Tue Jan 29 14:53:47 2019
New Revision: 352556
URL: http://llvm.org/viewvc/llvm-project?rev=352556&view=rev
Log:
[test] Use correct macro in FileCollectorTest.cpp
This test was supposed to be skipped on Windows but was using the wrong
macro name.
Modified:
lldb/trunk/unittests/Utility/FileCollectorTest.cpp
Modified: lldb/trunk/unittests/Utility/FileCollectorTest.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/Utility/FileCollectorTest.cpp?rev=352556&r1=352555&r2=352556&view=diff
==============================================================================
--- lldb/trunk/unittests/Utility/FileCollectorTest.cpp (original)
+++ lldb/trunk/unittests/Utility/FileCollectorTest.cpp Tue Jan 29 14:53:47 2019
@@ -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);
More information about the lldb-commits
mailing list