1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/bin/sh
t=`basename $0`
cat > $t.I <<\EOF
#if 0
#ifdef _AIX
#define cppi_converts_the_tab_on_this_line_to_a_space
#define cppi_converts_the_tabs_and_spaces_on_this_line_to_a_space
#include "foo"
#pragma alloca
#pragma alloca
#endif
#endif
EOF
cat > $t.EO <<\EOF
#if 0
# ifdef _AIX
# define cppi_converts_the_tab_on_this_line_to_a_space
# define cppi_converts_the_tabs_and_spaces_on_this_line_to_a_space
# include "foo"
# pragma alloca
# pragma alloca
# endif
#endif
EOF
cat > $t.Ee <<\EOF
EOF
options=
expected_status=0
. $top_srcdir/tests/test-common
|