Mail Archives: djgpp-workers/2000/08/01/16:06:49
This is a multi-part message in MIME format.
--------------853A2DFFDFB5B1DEE7719202
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
eliz AT is DOT elta DOT co DOT il wrote:
> ... testing.h winds up identical to itself, as it should, I think.
If you are referring to fixinc/test/base/testing.h, yes.
However, I meant to have it run against:
${builddir}/gcc/fixinc/tests/inc/testing.h
which is generated by the shell script "check.sh" (which, in turn,
is generated by AutoGen). There are several "features" that
need to be fixed in that file. (See the attached "testing.h" file.)
> (The second patch below has nothing to do with the bug, it just gets
> in my way when I'm trying to run the program outside the shell script
> or under GDB, and forget to define $VERBOSE.)
Thanks. I'll make sure that gets added :-)
--------------853A2DFFDFB5B1DEE7719202
Content-Type: text/plain; charset=us-ascii;
name="testing.h"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="testing.h"
#if defined( CTRL_QUOTES_DEF_CHECK )
#define _CTRL(c) ('c'&037)
#endif /* CTRL_QUOTES_DEF_CHECK */
#if defined( CTRL_QUOTES_USE_CHECK )
#define TCTRLFOO BSD43_CTRL(T, 1)
#endif /* CTRL_QUOTES_USE_CHECK */
#if defined( IO_QUOTES_DEF_CHECK )
#define XX_IO(x) ('x'<<8|256)
#endif /* IO_QUOTES_DEF_CHECK */
#if defined( IO_QUOTES_USE_CHECK )
#define TIOCFOO BSD43__IOWR(T, 1)
#define TIOCFOO \
BSD43__IOWR(T, 1) /* Some are multi-line */
#endif /* IO_QUOTES_USE_CHECK */
#if defined( LIBC1_IFDEFD_MEMX_CHECK )
/* `memcpy' is a built-in function for gcc 2.x. */
#if defined(__STDC__) && __GNUC__ < 2
/* Copy N bytes of SRC to DEST. */
extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,
size_t __n));
#endif
#endif /* LIBC1_IFDEFD_MEMX_CHECK */
#if defined( MACHINE_NAME_CHECK )
/* MACH_DIFF: */
#if defined( i386 ) || defined( sparc ) || defined( vax )
/* no uniform test, so be careful :-) */
#endif /* MACHINE_NAME_CHECK */
#if defined( SCO_STRICT_ANSI_CHECK )
#if !__STDC__ /* not standard C */
int foo;
#endif
#endif /* SCO_STRICT_ANSI_CHECK */
#if defined( SYSV68_STRING_CHECK )
extern int strlen();
extern int ffs(long);
extern char
*memccpy(),
memcpy();
extern int
strncmp(),
strlen(),
strspn();
extern int
strlen(), strspn();
#endif /* SYSV68_STRING_CHECK */
#if defined( UNDEFINE_NULL_CHECK )
#define NULL 0UL
#define NULL ((void*)0)
#endif /* UNDEFINE_NULL_CHECK */
--------------853A2DFFDFB5B1DEE7719202--
- Raw text -