[ASan/Win tests] Bring back -GS- as SEH tests fail otherwise
[blocksruntime.git] / test / asan / TestCases / Windows / seh.cc
blob34919d02a674ecb3657e65f9f03e5edee1728074
1 // Clang doesn't support SEH on Windows yet, so for the time being we
2 // build this program in two parts: the code with SEH is built with CL,
3 // the rest is built with Clang. This represents the typical scenario when we
4 // build a large project using "clang-cl -fallback -fsanitize=address".
5 //
6 // FIXME: Investigate why -GS- is required.
7 // RUN: cl -GS- -c %s -Fo%t.obj
8 // RUN: %clangxx_asan -o %t.exe %s %t.obj
9 // RUN: %run %t.exe
11 #include <windows.h>
12 #include <assert.h>
13 #include <stdio.h>
15 // Should just "#include <sanitizer/asan_interface.h>" when C++ exceptions are
16 // supported and we don't need to use CL.
17 extern "C" bool __asan_address_is_poisoned(void *p);
19 void ThrowAndCatch();
21 #if !defined(__clang__)
22 __declspec(noinline)
23 void Throw() {
24 int local, zero = 0;
25 fprintf(stderr, "Throw: %p\n", &local);
26 local = 5 / zero;
29 __declspec(noinline)
30 void ThrowAndCatch() {
31 int local;
32 __try {
33 Throw();
34 } __except(EXCEPTION_EXECUTE_HANDLER) {
35 fprintf(stderr, "__except: %p\n", &local);
38 #else
40 int main() {
41 char x[32];
42 fprintf(stderr, "Before: %p poisoned: %d\n", &x,
43 __asan_address_is_poisoned(x + 32));
44 assert(__asan_address_is_poisoned(x + 32));
45 ThrowAndCatch();
46 fprintf(stderr, "After: %p poisoned: %d\n", &x,
47 __asan_address_is_poisoned(x + 32));
48 // FIXME: Invert this assertion once we fix
49 // https://code.google.com/p/address-sanitizer/issues/detail?id=258
50 assert(!__asan_address_is_poisoned(x + 32));
52 #endif