]> git.proxmox.com Git - rustc.git/blob - src/libcompiler_builtins/compiler-rt/test/asan/TestCases/Windows/operator_array_new_right_oob.cc
New upstream version 1.20.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / test / asan / TestCases / Windows / operator_array_new_right_oob.cc
1 // RUN: %clang_cl_asan -O0 %s -Fe%t
2 // RUN: not %run %t 2>&1 | FileCheck %s
3
4 #include <windows.h>
5
6 int main() {
7 char *buffer = new char[42];
8 buffer[42] = 42;
9 // CHECK: AddressSanitizer: heap-buffer-overflow on address [[ADDR:0x[0-9a-f]+]]
10 // CHECK: WRITE of size 1 at [[ADDR]] thread T0
11 // CHECK: {{#0 .* main .*operator_array_new_right_oob.cc}}:[[@LINE-3]]
12 // CHECK: [[ADDR]] is located 0 bytes to the right of 42-byte region
13 // CHECK: allocated by thread T0 here:
14 // FIXME: The 'operator new' frame should have [].
15 // CHECK: {{#0 .* operator new}}
16 // CHECK: {{#1 .* main .*operator_array_new_right_oob.cc}}:[[@LINE-9]]
17 delete [] buffer;
18 }