diff options
| author | Ilya Biryukov <ibiryukov@google.com> | 2018-02-06 19:09:44 +0000 |
|---|---|---|
| committer | Ilya Biryukov <ibiryukov@google.com> | 2018-02-06 19:09:44 +0000 |
| commit | 7e817a2c0c7b0587e22d7d41b680caef465666e0 (patch) | |
| tree | 38aa4de730afc6499d4a1381bd25728368566260 | |
| parent | be253e797b58a923371c0629052da2ec1d59c3aa (diff) | |
| download | bcm5719-llvm-7e817a2c0c7b0587e22d7d41b680caef465666e0.tar.gz bcm5719-llvm-7e817a2c0c7b0587e22d7d41b680caef465666e0.zip | |
[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.
llvm-svn: 324382
| -rw-r--r-- | clang-tools-extra/test/clangd/trace.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clangd/trace.test b/clang-tools-extra/test/clangd/trace.test index 7474e887325..7c391f7dbdf 100644 --- a/clang-tools-extra/test/clangd/trace.test +++ b/clang-tools-extra/test/clangd/trace.test @@ -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. |

