Re: Writing automated tests for the GCC driver

2020-05-25 Thread Alexandre Oliva
Hello, Giuliano, On May 25, 2020, Giuliano Belinassi via Gcc wrote: > gcc a.c b.o -o a.out > gcc a.c b.c > gcc a.S > and so on. So if you do some radical change to the GCC driver, making > sure everything is correct get somewhat painful because you have to do > a clean bootstrap and find out wh

Re: Writing automated tests for the GCC driver

2020-05-25 Thread Richard Biener via Gcc
On Mon, May 25, 2020 at 4:37 PM Giuliano Belinassi wrote: > > Hi, > > On 05/22, Richard Biener wrote: > > On Thu, May 21, 2020 at 11:00 PM Giuliano Belinassi via Gcc > > wrote: > > > > > > Hi, all. > > > > > > GCC have a extensive testsuite, that is no news at all. However they are > > > focused

Re: Writing automated tests for the GCC driver

2020-05-25 Thread Giuliano Belinassi via Gcc
Hi, On 05/22, Richard Biener wrote: > On Thu, May 21, 2020 at 11:00 PM Giuliano Belinassi via Gcc > wrote: > > > > Hi, all. > > > > GCC have a extensive testsuite, that is no news at all. However they are > > focused on the compiler (cc1*) or in libraries, and I can't find tests > > related to th

Re: Writing automated tests for the GCC driver

2020-05-22 Thread Richard Biener via Gcc
On Thu, May 21, 2020 at 11:00 PM Giuliano Belinassi via Gcc wrote: > > Hi, all. > > GCC have a extensive testsuite, that is no news at all. However they are > focused on the compiler (cc1*) or in libraries, and I can't find tests > related to the GCC driver. > > Are there tests to the GCC driver?