[clang-tools-extra] r324382 - [clangd] Attempt to unbreak windows buildbots.
Ilya Biryukov via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 6 11:09:44 PST 2018
Author: ibiryukov
Date: Tue Feb 6 11:09:44 2018
New Revision: 324382
URL: http://llvm.org/viewvc/llvm-project?rev=324382&view=rev
Log:
[clangd] Attempt to unbreak windows buildbots.
Some buildbots are breaking on trace.test due to using Linux's path
separators. This commit should unbreak them.
Modified:
clang-tools-extra/trunk/test/clangd/trace.test
Modified: clang-tools-extra/trunk/test/clangd/trace.test
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clangd/trace.test?rev=324382&r1=324381&r2=324382&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clangd/trace.test (original)
+++ clang-tools-extra/trunk/test/clangd/trace.test Tue Feb 6 11:09:44 2018
@@ -10,7 +10,7 @@
# CHECK: "name": "Preamble"
# CHECK: },
# Finish building the preamble, with filename.
-# CHECK: "File": "{{.*}}/foo.c"
+# CHECK: "File": "{{.*(/|\\)}}foo.c"
# CHECK-NEXT: },
# CHECK-NEXT: "ph": "E"
# Start building the file.
More information about the cfe-commits
mailing list