From 4bc5e93aac0eca25da63553f5cfc0f6464bd1e3a Mon Sep 17 00:00:00 2001 From: Ilya Biryukov Date: Thu, 25 Apr 2019 11:57:40 +0000 Subject: [PATCH] [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 --- unittests/Support/AnnotationsTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.50.1