This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: [RFC] Improve testsuite for poor expect behavior



> -----Message d'origine-----
> De?: 'Daniel Jacobowitz' [mailto:drow@false.org]
> Envoyé?: Wednesday, June 17, 2009 3:36 PM
> À?: Pierre Muller
> Cc?: 'Joel Brobecker'; gdb-patches@sourceware.org
> Objet?: Re: [RFC] Improve testsuite for poor expect behavior
> 
> On Wed, Jun 17, 2009 at 01:27:23AM +0200, Pierre Muller wrote:
> >   I will try to resubmit a much shorter patch
> > that just handles this without trying to
> > modify the executables.
> 
> FYI, here's what we do for mingw host in our sources, in main.c:
> 
> +#ifdef _WIN32
> +  /* A Cygwin ssh session may not look like a terminal to the Windows
> +     runtime; ensure unbuffered output.  */
> +  setvbuf (stdout, NULL, _IONBF, BUFSIZ);
> +  setvbuf (stderr, NULL, _IONBF, BUFSIZ);
> +#endif
> +

  Could we use something that would also work for Win64 compilation?

> +#ifdef __MINGW32__
> +  /* In textmode, a '\n' is automatically expanded into "\r\n".  When
> +     driving the testsuite from a linux host, the '\n' is also
> +     expanded into "\r\n".  This results in expect seing "\r\r\n".
> +     The tests aren't prepared currently for other forms of eol.  As a
> +     workaround, we force the output to binary mode.  Do this only if
> +     the files are pipes (cygwin ttys are Windows pipes behind the
> +     scenes).  */
> +  {
> +    int in = fileno (stdin);
> +    int out = fileno (stdout);
> +    int err = fileno (stderr);
> +    HANDLE hin = (HANDLE) _get_osfhandle (in);
> +    HANDLE hout = (HANDLE) _get_osfhandle (out);
> +    HANDLE herr = (HANDLE) _get_osfhandle (err);
> +    if (GetFileType (hin) == FILE_TYPE_PIPE)
> +      setmode (in, O_BINARY);
> +    if (GetFileType (hout) == FILE_TYPE_PIPE)
> +      setmode (out, O_BINARY);
> +    if (GetFileType (herr) == FILE_TYPE_PIPE)
> +      setmode (err, O_BINARY);
> +  }
> +#endif
> +
>    gdb_stdout = stdio_fileopen (stdout);
>    gdb_stderr = stdio_fileopen (stderr);
>    gdb_stdlog = gdb_stderr;     /* for moment */
> 

Wouldn't it be better to move all this into
mingw-hdep.c file in the _initialize_mingw_hdep function,
the conditional can then be completely removed, no?

  I would really like to have all these changes
(set interactive also) in CVS!

Pierre




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]