From mboxrd@z Thu Jan 1 00:00:00 1970 From: mrs@wrs.com (Mike Stump) To: law@cygnus.com Cc: egcs@cygnus.com Subject: Re: debugging for egcs Date: Tue, 24 Feb 1998 20:44:00 -0000 Message-id: <199802242203.OAA21794@kankakee.wrs.com> X-SW-Source: 1998-02/msg01148.html > Date: Tue, 24 Feb 1998 13:54:16 -0700 > From: Jeffrey A Law > The c-torture framework does not need the source annotated with > additional information. The C++ tests do. They don't require it. For example, here is conv1.C: -------------------- enum E { C }; E foo() { return C; } main() { if (foo() != C) return 1; } -------------------- As you can see, nothing funny, nothing special. Though, to be fair to your comment, putting in testsuite directives is useful and done with regularity. I put them in half (43%) of the time.