diff options
| author | Michael Goulet <michael@errs.io> | 2022-08-13 14:10:08 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-13 14:10:08 -0700 |
| commit | ef72484f081918657cb54fb4a555eedc574a9908 (patch) | |
| tree | b8e637e62f784aa98562b8b4102f0d394b09eed0 | |
| parent | 9ab54df8d7c029fc0bb813028d8fda1e8f75294c (diff) | |
| parent | 43eda18a6c615655941d989b80631ce99c937c1e (diff) | |
Rollup merge of #100445 - krasimirgg:llvm-16-msan, r=tmiasko
adapt test for msan message change LLVM commit https://github.com/llvm/llvm-project/commit/057cabd997aeaef136e1e14f2ee645bd5bb197dd removed the function from the msan error message. This adapts our test accordingly. Found via our experimental rust + llvm @ HEAD bot: https://buildkite.com/llvm-project/rust-llvm-integrate-prototype/builds/12634#018289fe-b0bc-4bab-89b3-fb1d4e38f6db
| -rw-r--r-- | src/test/ui/sanitize/memory.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/sanitize/memory.rs b/src/test/ui/sanitize/memory.rs index b53f19a5b01..83f79679c6e 100644 --- a/src/test/ui/sanitize/memory.rs +++ b/src/test/ui/sanitize/memory.rs @@ -6,7 +6,7 @@ // run-fail // error-pattern: MemorySanitizer: use-of-uninitialized-value // error-pattern: Uninitialized value was created by an allocation -// error-pattern: in the stack frame of function 'main' +// error-pattern: in the stack frame // // This test case intentionally limits the usage of the std, // since it will be linked with an uninstrumented version of it. |
