diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-07 19:55:37 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-07 19:55:37 +0000 |
commit | ca9211ecdede9bdedb812b2243a4abdb8dacd1b9 (patch) | |
tree | 9b19e801150082c33e9152275829a6ce90614b55 /lib/asan/lit_tests/TestCases/stack-frame-demangle.cc | |
parent | 8ef50bf3d1c287b5013c3168de77a462dfce3495 (diff) |
Notes
Diffstat (limited to 'lib/asan/lit_tests/TestCases/stack-frame-demangle.cc')
-rw-r--r-- | lib/asan/lit_tests/TestCases/stack-frame-demangle.cc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/asan/lit_tests/TestCases/stack-frame-demangle.cc b/lib/asan/lit_tests/TestCases/stack-frame-demangle.cc deleted file mode 100644 index 2b83ecc2923bf..0000000000000 --- a/lib/asan/lit_tests/TestCases/stack-frame-demangle.cc +++ /dev/null @@ -1,22 +0,0 @@ -// RUN: %clangxx_asan -O0 %s -o %t && not %t 2>&1 | FileCheck %s - -#include <string.h> - -namespace XXX { -struct YYY { - static int ZZZ(int x) { - char array[10]; - memset(array, 0, 10); - return array[x]; // BOOOM - // CHECK: ERROR: AddressSanitizer: stack-buffer-overflow - // CHECK: READ of size 1 at - // CHECK: is located in stack of thread T0 at offset - // CHECK: XXX::YYY::ZZZ - } -}; -} // namespace XXX - -int main(int argc, char **argv) { - int res = XXX::YYY::ZZZ(argc + 10); - return res; -} |