[compiler-rt] [compiler-rt][asan] _aligned_malloc/_aligned_free interception. (PR #82049)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 8 08:34:57 PST 2024
================
@@ -1,5 +1,5 @@
// RUN: %clang_cl_asan %Od %s %Fe%t
-// RUN: %run %t
+// RUN: not %run %t | FileCheck %s
----------------
zmodem wrote:
The ASan errors get printed to stderr. We need to redirect the output so FileCheck sees it. In other words, this line should be
```
// RUN: not %run %t 2>&1 | FileCheck %s
```
https://github.com/llvm/llvm-project/pull/82049
More information about the llvm-commits
mailing list