Re: Validating a C++ back-end

2005-05-10 Thread Mike Stump
On May 9, 2005, at 10:20 PM, Vasanth wrote: How do I run the C++ testsuite on my compiler? make check, it isn't meant to be that hard or complex. If you get 10 or fewer unexpected failures in the C++ testsuite and the libstdc++ testsuite, then, you are in the game, if more, you'll want to in

Re: Validating a C++ back-end

2005-05-10 Thread Nathan Sidwell
Vasanth wrote: > Hi Nathan, > > Thanks for the inputs. Can you tell me if there is a set of tests in > the G++ testsuite for verifying just my implementation of basic > machine dependent C++ hooks? To give examples - verify global > constructor/destructors being invoked correctly, init_priority, >

Re: Validating a C++ back-end

2005-05-10 Thread Vasanth
Hi Nathan, Thanks for the inputs. Can you tell me if there is a set of tests in the G++ testsuite for verifying just my implementation of basic machine dependent C++ hooks? To give examples - verify global constructor/destructors being invoked correctly, init_priority, thunks, Vtable stuff etc. C

Re: Validating a C++ back-end

2005-05-10 Thread chris jefferson
Vasanth wrote: Hi, I am working on a fresh C++ port and I am filling in all the machine specific hooks. How do I run the C++ testsuite on my compiler? I am familiar with the GCC torture/execute tests and have my backend passing those tests reasonably well. Now, I am looking for something similar fo

Re: Validating a C++ back-end

2005-05-10 Thread Nathan Sidwell
Vasanth wrote: Hi, I am working on a fresh C++ port and I am filling in all the machine specific hooks. How do I run the C++ testsuite on my compiler? I am familiar with the GCC torture/execute tests and have my backend passing those tests reasonably well. Now, I am looking for something similar fo