1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[Support] Try to unbreak windows buildbot

After r359179.

llvm-svn: 359183
This commit is contained in:
Ilya Biryukov 2019-04-25 11:57:40 +00:00
parent 2e7ead2539
commit 3d03962794

View File

@ -105,7 +105,7 @@ TEST(AnnotationsTest, Errors) {
// Parsing failures. // Parsing failures.
EXPECT_DEATH(llvm::Annotations("ff[[fdfd"), "unmatched \\[\\["); 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"); EXPECT_DEATH(llvm::Annotations("ff$fdsfd"), "unterminated \\$name");
#endif #endif
} }