Move MSan lit-tests under test/msan
[blocksruntime.git] / lib / asan / lit_tests / TestCases / use-after-scope.cc
blobc46c9594c3149c0f3d4cec2cccccbdd6069c7516
1 // RUN: %clangxx_asan -O0 -fsanitize=use-after-scope %s -o %t && \
2 // RUN: not %t 2>&1 | FileCheck %s
3 // RUN: ASAN_OPTIONS="detect_stack_use_after_return=1" not %t 2>&1 | FileCheck %s
5 int main() {
6 int *p = 0;
8 int x = 0;
9 p = &x;
11 return *p; // BOOM
12 // CHECK: ERROR: AddressSanitizer: stack-use-after-scope
13 // CHECK: #0 0x{{.*}} in main {{.*}}use-after-scope.cc:[[@LINE-2]]
14 // CHECK: Address 0x{{.*}} is located in stack of thread T{{.*}} at offset [[OFFSET:[^ ]+]] in frame
15 // {{\[}}[[OFFSET]], {{[0-9]+}}) 'x'