blob: badebc56440dc8b42b41c5589a1eaa42e2f3861f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-do compile { target *-*-linux* *-*-gnu* } } */
/* { dg-options "-fhardened -D_FORTIFY_SOURCE=1" } */
#if _FORTIFY_SOURCE != 1
# error "_FORTIFY_SOURCE != 1"
#endif
#ifndef _GLIBCXX_ASSERTIONS
# error "_GLIBCXX_ASSERTIONS disabled when it should not be"
#endif
/* { dg-warning "._FORTIFY_SOURCE. is not enabled" "" { target *-*-* } 0 } */
|