aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/output_tests/stack-overflow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/output_tests/stack-overflow.cc')
-rw-r--r--lib/asan/output_tests/stack-overflow.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/asan/output_tests/stack-overflow.cc b/lib/asan/output_tests/stack-overflow.cc
deleted file mode 100644
index 35fa8a66c34c..000000000000
--- a/lib/asan/output_tests/stack-overflow.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <string.h>
-int main(int argc, char **argv) {
- char x[10];
- memset(x, 0, 10);
- int res = x[argc * 10]; // BOOOM
- return res;
-}
-
-// Check-Common: {{READ of size 1 at 0x.* thread T0}}
-// Check-Common: {{ #0 0x.* in main .*stack-overflow.cc:5}}
-// Check-Common: {{Address 0x.* is .* frame <main>}}