1 // RUN: %clangxx_scudo -fsized-deallocation %s -o %t
2 // RUN: %env_scudo_opts=DeleteSizeMismatch=1 %run %t gooddel 2>&1
3 // RUN: %env_scudo_opts=DeleteSizeMismatch=1 not %run %t baddel 2>&1 | FileCheck %s
4 // RUN: %env_scudo_opts=DeleteSizeMismatch=0 %run %t baddel 2>&1
5 // RUN: %env_scudo_opts=DeleteSizeMismatch=1 %run %t gooddelarr 2>&1
6 // RUN: %env_scudo_opts=DeleteSizeMismatch=1 not %run %t baddelarr 2>&1 | FileCheck %s
7 // RUN: %env_scudo_opts=DeleteSizeMismatch=0 %run %t baddelarr 2>&1
9 // Ensures that the sized delete operator errors out when the appropriate
10 // option is passed and the sizes do not match between allocation and
11 // deallocation functions.
19 int main(int argc
, char **argv
) {
21 if (!strcmp(argv
[1], "gooddel")) {
22 long long *p
= new long long;
23 operator delete(p
, sizeof(long long));
25 if (!strcmp(argv
[1], "baddel")) {
26 long long *p
= new long long;
27 operator delete(p
, 2);
29 if (!strcmp(argv
[1], "gooddelarr")) {
30 char *p
= new char[64];
31 operator delete[](p
, 64);
33 if (!strcmp(argv
[1], "baddelarr")) {
34 char *p
= new char[63];
35 operator delete[](p
, 64);
40 // CHECK: ERROR: invalid sized delete when deallocating address