We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987f307 commit c8ed684Copy full SHA for c8ed684
llvm/unittests/Support/Caching.cpp
@@ -109,7 +109,8 @@ TEST(Caching, WriteAfterCommit) {
109
(*CFS->OS).write(data, sizeof(data));
110
ASSERT_THAT_ERROR(CFS->commit(), Succeeded());
111
112
- EXPECT_DEATH({ (*CFS->OS).write(data, sizeof(data)); }, "")
+ EXPECT_DEATH(
113
+ { (*CFS->OS).write(data, sizeof(data)); }, "")
114
<< "Write after commit did not cause abort";
115
116
ASSERT_NO_ERROR(sys::fs::remove_directories(CacheDir.str()));
0 commit comments