From: Ilya Biryukov Date: Thu, 25 Apr 2019 11:57:40 +0000 (+0000) Subject: [Support] Try to unbreak windows buildbot X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bc5e93aac0eca25da63553f5cfc0f6464bd1e3a;p=llvm [Support] Try to unbreak windows buildbot After r359179. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359183 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/AnnotationsTest.cpp b/unittests/Support/AnnotationsTest.cpp index bf66f178924..b2970adc41c 100644 --- a/unittests/Support/AnnotationsTest.cpp +++ b/unittests/Support/AnnotationsTest.cpp @@ -105,7 +105,7 @@ TEST(AnnotationsTest, Errors) { // Parsing failures. EXPECT_DEATH(llvm::Annotations("ff[[fdfd"), "unmatched \\[\\["); - EXPECT_DEATH(llvm::Annotations("ff[[fdjsfjd]]xxx]]"), "unmatched ]]"); + EXPECT_DEATH(llvm::Annotations("ff[[fdjsfjd]]xxx]]"), "unmatched \\]\\]"); EXPECT_DEATH(llvm::Annotations("ff$fdsfd"), "unterminated \\$name"); #endif }