diff options
author | Juergen Ributzka <juergen@apple.com> | 2017-03-11 00:01:24 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2017-03-11 00:01:24 +0000 |
commit | c28c7e5bd3439c32cc70cc454bb51a8bfcdd559f (patch) | |
tree | 255393abdc9ed04e45a07a4e4e398786d8f1cb8a /clang/unittests/Basic/VirtualFileSystemTest.cpp | |
parent | a7416358ba1ba644bc89bdece382c50cb5e01368 (diff) | |
download | llvm-c28c7e5bd3439c32cc70cc454bb51a8bfcdd559f.zip llvm-c28c7e5bd3439c32cc70cc454bb51a8bfcdd559f.tar.gz llvm-c28c7e5bd3439c32cc70cc454bb51a8bfcdd559f.tar.bz2 |
Adding debug output to investigate systemz bot issue.
llvm-svn: 297531
Diffstat (limited to 'clang/unittests/Basic/VirtualFileSystemTest.cpp')
-rw-r--r-- | clang/unittests/Basic/VirtualFileSystemTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Basic/VirtualFileSystemTest.cpp b/clang/unittests/Basic/VirtualFileSystemTest.cpp index 79b4d87..ea00bf5 100644 --- a/clang/unittests/Basic/VirtualFileSystemTest.cpp +++ b/clang/unittests/Basic/VirtualFileSystemTest.cpp @@ -436,6 +436,7 @@ TEST(VirtualFileSystemTest, BrokenSymlinkRealFSRecursiveIteration) { EC = std::error_code(); continue; } else if (EC) { + outs() << "BrokenSymlinkRealFSRecursiveIteration EC: " << EC.message(); break; } Contents.push_back(I->getName()); |