From 3d03962794270961b414525602c72ff01c645d86 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. llvm-svn: 359183 --- 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 }