1#!/bin/sh
2
3t=`basename $0`
4
5cat > $t.I <<\EOF
6#if 0
7#else /* multiline comment,
8         *then* text after #else */       this should elicit an error
9#endif
10EOF
11
12cat > $t.EO <<\EOF
13EOF
14
15cat > $t.Ee <<\EOF
16cppi: standard input: line 2: text following `#else' violates ANSI standard
17EOF
18    #`
19
20options='-c --ansi'
21expected_status=1
22
23. $top_srcdir/tests/test-common
24