Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Pedro Alves <palves@redhat.com>
To: Tom Tromey <tom@tromey.com>, gdb-patches@sourceware.org
Subject: Re: [RFA 2/2] PR cli/19551 - change formatting of "Reading symbols" messages
Date: Tue, 18 Apr 2017 17:43:00 -0000	[thread overview]
Message-ID: <3c04e1c7-7192-07ed-b2ca-ce9ebc0b99a6@redhat.com> (raw)
In-Reply-To: <20170413041504.14435-3-tom@tromey.com>

[-- Attachment #1: Type: text/plain, Size: 11855 bytes --]

On 04/13/2017 05:15 AM, Tom Tromey wrote:
> From: Tom Tromey <tromey@redhat.com>
> 
> PR cli/19551 notes that the "Reading symbols" messages can be messy, for
> example:
> 
> (gdb) file /bin/gdb
> Reading symbols from /bin/gdb...Reading symbols from /bin/gdb...(no debugging symbols found)...done.
> (no debugging symbols found)...done.
> 
> In this case the first message is being interrupted by the message for
> the minidebug info; then the subsequent output is emitted strangely.
> 
> This patch changes gdb to use a progress bar when reading debug info.

Nice!

> It modifies the DWARF reader(s) to update the progress.  

What does GDB show with the reader?  Is their output now broken, same,
etc?

> Any printing
> is deferred until the first progress report, so the messages no longer
> clash.

Can you clarify what printing you're referring to?
What happens if gdb emits e.g., complaints while a progress bar
is half full?

> 
> While printing the status message it looks like:
> 
> Reading symbols from ./gdb
> [##############                                                  ]
> 
> The "#"s show the progress; these are only printed on a terminal.
> 
> When it is finished it looks like:
> 
> Reading symbols from .gnu_debugdata for /usr/bin/gdb
> Reading symbols from /bin/gdb

I played with this a bit and it looks like a real nice improvement
to me.

I noticed that if you clear the screen such that the prompt is not at
the bottom when gdb reads symbols (e.g., start gdb on itself,
run to main, do ctrl-l to clear the screen, and do
"nosharedlibrary / sharedlibrary"), and if symbol reading is quick, then
the meter appears/disappears very quickly in what looks like an
odd flash.  It looks a tiny bit annoying to me.  Though not a deal breaker
and I'll get used to it for sure.  One way around it would be to
not print the meter unless the operation is taking longer than some
minimum time, like 1s or some such.

> 
> I made the MI implementation do nothing.  MI has a
> "status-async-output" production in the grammar:
> 
> 'STATUS-ASYNC-OUTPUT ==>'
>      '[ TOKEN ] "+" ASYNC-OUTPUT NL'
> 
> ... which maybe could be used for this sort of thing.  Currently I think
> it's only used for "load" progress (see mi_load_progress); so it wasn't
> clear to me whether this would be a good idea.

I think it'd be a good idea, but of course you don't have to do
it yourself.

Looks like the testsuite changes needs some more work.  I thought
I'd see how it looks, and ran (only) the gdb.base/attach.exp test,
and got:

 Running rc/gdb/testsuite/gdb.base/attach.exp ...
 ERROR: internal buffer is full.

I'm attaching the resulting gdb.log.


> 
> gdb/ChangeLog
> 2017-04-12  Tom Tromey  <tom@tromey.com>

(I think the correct thing to do wrt to authorship/copyright
is add both email addresses as multiple authors.  See e.g.,
commit 3e29f34a4eef.)
> index 2a59869..e99fce2 100644
> --- a/gdb/cli-out.c
> +++ b/gdb/cli-out.c
> @@ -236,6 +236,91 @@ cli_ui_out::do_redirect (ui_file *outstream)
>      m_streams.pop_back ();
>  }
>  
> +void
> +cli_ui_out::do_progress_start (const std::string &name, int should_print)

bool for "should_print" ?

> +{
> +  struct ui_file *stream = m_streams.back ();
> +  cli_progress_info meter;
> +
> +  meter.last_value = 0;

How about adding a ctor like this:

    cli_progress_info (meter_state printing_,
		       const std::string &name_)
      : printing (printing_),
        name (name_),
	last_value (0)
    {}

and then calling emplace_back further below.  You'd
need a:

  meter_state printing;

temporary ...

> +  meter.name = name;
> +  if (!ui_file_isatty (stream))
> +    {
> +      fprintf_unfiltered (stream, "%s...", meter.name.c_str ());
> +      gdb_flush (stream);

(Note these could use the isatty/printf/flush methods of ui_file.
Likewise throughout.)

> +      meter.printing = WORKING;

... for these, of course.

> +    }
> +  else
> +    {
> +      /* Don't actually emit anything until the first call notify us
> +	 of progress.  This makes it so a second progress message can
> +	 be started before the first one has been notified, without
> +	 messy output.  */
> +      meter.printing = should_print ? START : NO_PRINT;

I find the START etc names to bit too generic to be directly
in cli_ui_out scope.  I think they should be either METER_START etc.,
or meter_state should be an enum class, or meter_state stays a
regular enum but is moved to cli_progress_info, perhaps.

> +    }
> +
> +  m_meters.push_back (meter);
> +}
> +
> +void
> +cli_ui_out::do_progress_notify (double howmuch)
> +{
> +  struct ui_file *stream = m_streams.back ();

We've dropped most of the redundant "struct" in "struct ui_file"
in cli-out.c/h recently.  Let's not add it back in new code.

> +  cli_progress_info &meter (m_meters.back ());

Below you've written this as:

    cli_progress_info &meter = m_meters.back ();

I prefer the latter using =, as it's easier to reason
about.

> +
> +  if (meter.printing == NO_PRINT)
> +    return;
> +
> +  if (meter.printing == START)
> +    {
> +      fprintf_unfiltered (stream, "%s\n", meter.name.c_str ());
> +      gdb_flush (stream);
> +      meter.printing = WORKING;
> +    }
> +
> +  if (ui_file_isatty (stream))
> +    {
> +      int i, max;
> +      int width = get_chars_per_line () - 3;
> +
> +      max = width * howmuch;
> +      fprintf_unfiltered (stream, "\r[");
> +      for (i = 0; i < width; ++i)

These can now be:

 int max = ...
 for (int i = 0; ...

etc., likewise throughout.

> +	fprintf_unfiltered (stream, i < max ? "#" : " ");
> +      fprintf_unfiltered (stream, "]");
> +      gdb_flush (stream);
> +    }
> +}
> +


>    std::vector<ui_file *> m_streams;
>    bool m_suppress_output;
> +
> +  /* Represents the printing state of a progress meter.  */
> +  enum meter_state
> +  {
> +    /* Printing will start with the next output.  */
> +    START,
> +    /* Printing has already started.  */
> +    WORKING,
> +    /* Printing should not be done.  */
> +    NO_PRINT
> +  };
> +
> +  /* The state of a recent progress meter.  */
> +  struct cli_progress_info
> +  {
> +    /* The current state.  */
> +    enum meter_state printing;
> +    /* The name to print.  */
> +    std::string name;
> +    /* The last notification value.  */
> +    double last_value;
> +  };
> +
> +  /* Stack of progress meters.  */
> +  std::vector<cli_progress_info> m_meters;

I think it'd be good to have this comment expanded a bit to
explain why we need a stack, and what happens when we're
already printing a meter and a new stack level appears.

>  };
>  
>  extern cli_ui_out *cli_out_new (struct ui_file *stream);
> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
> index b58d0fc..7d99c99 100644
> --- a/gdb/dwarf2read.c
> +++ b/gdb/dwarf2read.c

Could you add some comments about what is considered a "step"
here, how the number of total progress steps is determined, etc.?

> diff --git a/gdb/mi/mi-out.h b/gdb/mi/mi-out.h
> index fea94f2..490c06a 100644
> --- a/gdb/mi/mi-out.h
> +++ b/gdb/mi/mi-out.h
> @@ -72,6 +72,18 @@ protected:
>    virtual bool do_is_mi_like_p () override
>    { return true; }
>  
> +  virtual void do_progress_start (const std::string &, int) override
> +  {
> +  }
> +
> +  virtual void do_progress_notify (double) override
> +  {
> +  }
> +
> +  virtual void do_progress_end () override
> +  {
> +  }

If implementations can do nothing, shouldn't "nothing" be the
default implementation?

> @@ -78,23 +79,22 @@ require_partial_symbols (struct objfile *objfile, int verbose)
>  
>        if (objfile->sf->sym_read_psymbols)
>  	{
> +	  gdb::optional<ui_out::progress_meter> meter;
> +
>  	  if (verbose)
>  	    {
> -	      printf_unfiltered (_("Reading symbols from %s..."),
> -				 objfile_name (objfile));
> -	      gdb_flush (gdb_stdout);
> +	      std::string text = (std::string ("Reading symbols from ")
> +				  + objfile_name (objfile));
> +
> +	      meter.emplace (current_uiout, text, verbose);

It looked to me that the "progress text" string is always a 
discardable string that could be moved all the way to meter.name
instead of duped.  I.e., here you'd have:

     meter.emplace (current_uiout, std::move (text), verbose);

> +  {
> +    std::string progress_text;
> +
> +    if (should_print)
> +      {
> +	if (deprecated_pre_add_symbol_hook)
> +	  deprecated_pre_add_symbol_hook (name);
> +
> +	progress_text = std::string ("Reading symbols from ") + name;
> +      }
> +    else
> +      progress_text = "";

This else branch is unnecessary.  strings are empty by default.

> +
> +    ui_out::progress_meter meter (current_uiout, progress_text, should_print);

   ui_out::progress_meter meter (current_uiout, 
                                 std::move (progress_text), 
                                 should_print);

Etc (re. move).  Of course, the progress_meter prototype
would be adjusted accordingly.


> +    syms_from_objfile (objfile, addrs, add_flags);
> +  }
>  
>    /* We now have at least a partial symbol table.  Check to see if the
>       user requested that all symbols be read on initial access via either
>       the gdb startup command line or on a per symbol file basis.  Expand
>       all partial symbol tables for this objfile if so.  */
>  
> -  if ((flags & OBJF_READNOW))
> -    {
> -      if (should_print)
> -	{
> -	  printf_unfiltered (_("expanding to full symbols..."));
> -	  wrap_here ("");
> -	  gdb_flush (gdb_stdout);
> -	}
> +  {
> +    if ((flags & OBJF_READNOW))
> +      {
> +	std::string progress_text;
>  
> -      if (objfile->sf)
> -	objfile->sf->qf->expand_all_symtabs (objfile);
> -    }
> +	if (should_print)
> +	  progress_text = std::string ("Expanding full symbols for ") + name;
> +	else
> +	  progress_text = "";
>  
> -  if (should_print && !objfile_has_symbols (objfile))
> -    {
> -      wrap_here ("");
> -      printf_unfiltered (_("(no debugging symbols found)..."));
> -      wrap_here ("");
> -    }
> +	ui_out::progress_meter meter (current_uiout, progress_text,
> +				      should_print);
> +
> +	if (objfile->sf)
> +	  objfile->sf->qf->expand_all_symtabs (objfile);
> +      }
> +  }
>  
>    if (should_print)
>      {
> +      if (!objfile_has_symbols (objfile))
> +	printf_unfiltered (_(" (no debugging symbols found)\n"));
> +
>        if (deprecated_post_add_symbol_hook)
>  	deprecated_post_add_symbol_hook ();
> -      else
> -	printf_unfiltered (_("done.\n"));
>      }
>  
>    /* We print some messages regardless of whether 'from_tty ||
> @@ -2483,10 +2486,6 @@ reread_symbols (void)
>  	  struct cleanup *old_cleanups;
>  	  struct section_offsets *offsets;
>  	  int num_offsets;
> -	  char *original_name;
> -
> -	  printf_unfiltered (_("`%s' has changed; re-reading symbols.\n"),
> -			     objfile_name (objfile));
>  
>  	  /* There are various functions like symbol_file_add,
>  	     symfile_bfd_open, syms_from_objfile, etc., which might
> @@ -2502,6 +2501,11 @@ reread_symbols (void)
>  	  /* We need to do this whenever any symbols go away.  */
>  	  make_cleanup (clear_symtab_users_cleanup, 0 /*ignore*/);
>  
> +	  std::string text
> +	    = (std::string (_("`%s' has changed; re-reading symbols.\n"))
> +	       + objfile_name (objfile));

This transformation doesn't look right.  Note the %s.

> +	  ui_out::progress_meter meter (current_uiout, text, 1);
> +
>  	  if (exec_bfd != NULL
>  	      && filename_cmp (bfd_get_filename (objfile->obfd),
>  			       bfd_get_filename (exec_bfd)) == 0)
> @@ -2548,8 +2552,7 @@ reread_symbols (void)
>  	      error (_("Can't open %s to read symbols."), obfd_filename);
>  	  }
>  


> +/* See utils.h.  */
> +
> +int
> +get_chars_per_line (void)

You can drop the "void".

> +{
> +  return chars_per_line;
> +}
> +

> +/* Return the number of characters in a line.  */
> +
> +extern int get_chars_per_line (void);
> +

Ditto.

Thanks,
Pedro Alves


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: gdb.log --]
[-- Type: text/x-log; name="gdb.log", Size: 178575 bytes --]

Test run by pedro on Tue Apr 18 18:12:39 2017
Native configuration is x86_64-pc-linux-gnu

		=== gdb tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using /home/pedro/gdb/mygit/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.exp ...
Executing on build: rm -f /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2    (timeout = 300)
spawn -ignore SIGHUP rm -f /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2
Executing on host: gcc  /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c  -g  -lm   -o /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach    (timeout = 300)
spawn -ignore SIGHUP gcc /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c -g -lm -o /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
Executing on host: gcc  /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach2.c  -g  -lm   -o /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2    (timeout = 300)
spawn -ignore SIGHUP gcc /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach2.c -g -lm -o /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2
get_compiler_info: gcc-5-3-1
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../data-directory
GNU gdb (GDB) 7.12.50.20170413-git
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
(gdb) set height 0
(gdb) set width 0
(gdb) dir
Reinitialize source path to empty? (y or n) y
Source directories searched: $cdir:$cwd
(gdb) dir /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base
Source directories searched: /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base:$cdir:$cwd
(gdb) kill
The program is not being run.
(gdb) file /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[]\r[]\r[]\r\r(gdb) show sysroot
The current system root is "target:".
(gdb) spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
attach abc
Illegal process-id: abc.
(gdb) PASS: gdb.base/attach.exp: attach to nonsense is prohibited
attach 13884x
Illegal process-id: 13884x.
(gdb) PASS: gdb.base/attach.exp: attach to digits-starting nonsense is prohibited
attach 0
Attaching to program: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach, process 0
ptrace: No such process.
(gdb) PASS: gdb.base/attach.exp: attach to nonexistent process is prohibited
file /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
Load new symbol table from "/home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach"? (y or n) y
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[]\r[]\r[]\r\r(gdb) PASS: gdb.base/attach.exp: set file, before attach1 (re-read)
attach 13884
Attaching to program: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach, process 13884
Reading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libm.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libc.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/ld-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/ld-linux-x86-64.so.2
\r[]\r\rmain () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:18
18	  while (! should_exit)
(gdb) PASS: gdb.base/attach.exp: attach1, after setting file
print should_exit
$1 = 0
(gdb) PASS: gdb.base/attach.exp: after attach1, print should_exit
detach
Detaching from program: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach, process 13884
(gdb) PASS: gdb.base/attach.exp: attach1 detach
file
No executable file now.
Discard symbol table from `/home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach'? (y or n) y
No symbol file now.
(gdb) PASS: gdb.base/attach.exp: attach1, purging symbols after detach
attach 13884
Attaching to process 13884
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[]\r[]\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libm.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libc.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/ld-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/ld-linux-x86-64.so.2
\r[]\r\rmain () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:18
18	  while (! should_exit)
(gdb) PASS: gdb.base/attach.exp: attach2, with no file
set should_exit=1
(gdb) PASS: gdb.base/attach.exp: after attach2, set should_exit
tbreak 22
Temporary breakpoint 1 at 0x4005ff: file /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c, line 22.
(gdb) continue
Continuing.

Temporary breakpoint 1, main () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:22
22	  return 0; /* postloop */
(gdb) PASS: gdb.base/attach.exp: continue to breakpoint: postloop
continue
Continuing.
[Inferior 1 (process 13884) exited normally]
(gdb) PASS: gdb.base/attach.exp: continue until exit at after attach2, exit
killing 13884
Executing on build: kill -9 13884    (timeout = 300)
spawn -ignore SIGHUP kill -9 13884
closing exp9
waiting for exp9
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
dir /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach
Source directories searched: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach:/home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base:$cdir:$cwd
(gdb) PASS: gdb.base/attach.exp: set source path
cd /tmp
Working directory /tmp.
(gdb) PASS: gdb.base/attach.exp: cd away from process working directory
symbol-file
Discard symbol table from `/home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach'? (y or n) y
No symbol file now.
(gdb) PASS: gdb.base/attach.exp: before attach3, flush symbols
exec
No executable file now.
(gdb) PASS: gdb.base/attach.exp: before attach3, flush exec
attach 13902
Attaching to process 13902
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[]\r[]\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libm.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libc.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/ld-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/ld-linux-x86-64.so.2
\r[]\r\rmain () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:18
18	  while (! should_exit)
(gdb) PASS: gdb.base/attach.exp: attach when process' a.out not in cwd
kill
Kill the program being debugged? (y or n) y
(gdb) PASS: gdb.base/attach.exp: after attach3, exit
killing 13902
Executing on build: kill -9 13902    (timeout = 300)
spawn -ignore SIGHUP kill -9 13902
closing exp9
waiting for exp9
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../data-directory
GNU gdb (GDB) 7.12.50.20170413-git
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
(gdb) set height 0
(gdb) set width 0
(gdb) dir
Reinitialize source path to empty? (y or n) y
Source directories searched: $cdir:$cwd
(gdb) dir /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base
Source directories searched: /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base:$cdir:$cwd
(gdb) spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2
file /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2
\r[]\r[]\r[]\r\r(gdb) PASS: gdb.base/attach.exp: force switch to gdb64, if necessary
attach 13932
Attaching to program: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach2, process 13932
Reading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libm.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libc.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/ld-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/ld-linux-x86-64.so.2
\r[]\r\r0x00007fc27e8a5510 in __nanosleep_nocancel () at ../sysdeps/unix/syscall-template.S:84
84	T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
(gdb) PASS: gdb.base/attach.exp: attach call
i r r3
Invalid register `r3'
(gdb) PASS: gdb.base/attach.exp: info other register
p should_exit = 1
$1 = 1
(gdb) PASS: gdb.base/attach.exp: p should_exit = 1
continue
Continuing.
[Inferior 1 (process 13932) exited normally]
(gdb) PASS: gdb.base/attach.exp: continue until exit
killing 13932
Executing on build: kill -9 13932    (timeout = 300)
spawn -ignore SIGHUP kill -9 13932
closing exp9
waiting for exp9
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../data-directory --pid=13952
GNU gdb (GDB) 7.12.50.20170413-git
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Attaching to process 13952
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[#########################################################################################################################################################################]\r                                                                                                                                                                           \rReading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[###################################                                                                                                                                      ]\r[###################################                                                                                                                                      ]\r[###################################                                                                                                                                      ]\r[####################################                                                                                                                                     ]\r[####################################                                                                                                                                     ]\r[####################################                                                                                                                                     ]\r[#####################################                                                                                                                                    ]\r[#####################################                                                                                                                                    ]\r[######################################                                                                                                                                   ]\r[######################################                                                                                                                                   ]\r[######################################                                                                                                                                   ]\r[#######################################                                                                                                                                  ]\r[#######################################                                                                                                                                  ]\r[#######################################                                                                                                                                  ]\r[########################################                                                                                                                                 ]\r[########################################                                                                                                                                 ]\r[#########################################                                                                                                                                ]\r[#########################################                                                                                                                                ]\r[#########################################                                                                                                                                ]\r[##########################################                                                                                                                               ]\r[##########################################                                                                                                                               ]\r[##########################################                                                                                                                               ]\r[###########################################                                                                                                                              ]\r[###########################################                                                                                                                              ]\r[############################################                                                                                                                             ]\r[############################################                                                                                                                             ]\r[############################################                                                                                                                             ]\r[#############################################                                                                                                                            ]\r[#############################################                                                                                                                            ]\r[#############################################                                                                                                                            ]\r[##############################################                                                                                                                           ]\r[##############################################                                                                                                                           ]\r[##############################################                                                                                                                           ]\r[###############################################                                                                                                                          ]\r[###############################################                                                                                                                          ]\r[################################################                                                                                                                         ]\r[################################################                                                                                                                         ]\r[################################################                                                                                                                         ]\r[#################################################                                                                                                                        ]\r[#################################################                                                                                                                        ]\r[#################################################                                                                                                                        ]\r[##################################################                                                                                                                       ]\r[##################################################                                                                                                                       ]\r[###################################################                                                                                                                      ]\r[###################################################                                                                                                                      ]\r[###################################################                                                                                                                      ]\r[####################################################                                                                                                                     ]\r[####################################################                                                                                                                     ]\r[####################################################                                                                                                                     ]\r[#####################################################                                                                                                                    ]\r[#####################################################                                                                                                                    ]\r[#####################################################                                                                                                                    ]\r[######################################################                                                                                                                   ]\r[######################################################                                                                                                                   ]\r[#######################################################                                                                                                                  ]\r[#######################################################                                                                                                                  ]\r[#######################################################                                                                                                                  ]\r[########################################################                                                                                                                 ]\r[########################################################                                                                                                                 ]\r[########################################################                                                                                                                 ]\r[#########################################################                                                                                                                ]\r[#########################################################                                                                                                                ]\r[##########################################################                                                                                                               ]\r[##########################################################                                                                                                               ]\r[##########################################################                                                                                                               ]\r[###########################################################                                                                                                              ]\r[###########################################################                                                                                                              ]\r[###########################################################                                                                                                              ]\r[############################################################                                                                                                             ]\r[############################################################                                                                                                             ]\r[#############################################################                                                                                                            ]\r[#############################################################                                                                                                            ]\r[#############################################################                                                                                                            ]\r[##############################################################                                                                                                           ]\r[##############################################################                                                                                                           ]\r[##############################################################                                                                                                           ]\r[###############################################################                                                                                                          ]\r[###############################################################                                                                                                          ]\r[###############################################################                                                                                                          ]\r[################################################################                                                                                                         ]\r[################################################################                                                                                                         ]\r[#################################################################                                                                                                        ]\r[#################################################################                                                                                                        ]\r[#################################################################                                                                                                        ]\r[##################################################################                                                                                                       ]\r[##################################################################                                                                                                       ]\r[##################################################################                                                                                                       ]\r[###################################################################                                                                                                      ]\r[###################################################################                                                                                                      ]\r[####################################################################                                                                                                     ]\r[####################################################################                                                                                                     ]\r[####################################################################                                                                                                     ]\r[#####################################################################                                                                                                    ]\r[#####################################################################                                                                                                    ]\r[#####################################################################                                                                                                    ]\r[######################################################################                                                                                                   ]\r[######################################################################                                                                                                   ]\r[#######################################################################                                                                                                  ]\r[#######################################################################                                                                                                  ]\r[#######################################################################                                                                                                  ]\r[########################################################################                                                                                                 ]\r[########################################################################                                                                                                 ]\r[########################################################################                                                                                                 ]\r[#########################################################################                                                                                                ]\r[#########################################################################                                                                                                ]\r[#########################################################################                                                                                                ]\r[##########################################################################                                                                                               ]\r[##########################################################################                                                                                               ]\r[###########################################################################                                                                                              ]\r[###########################################################################                                                                                              ]\r[###########################################################################                                                                                              ]\r[############################################################################                                                                                             ]\r[############################################################################                                                                                             ]\r[############################################################################                                                                                             ]\r[#############################################################################                                                                                            ]\r[#############################################################################                                                                                            ]\r[##############################################################################                                                                                           ]\r[##############################################################################                                                                                           ]\r[##############################################################################                                                                                           ]\r[###############################################################################                                                                                          ]\r[###############################################################################                                                                                          ]\r[###############################################################################                                                                                          ]\r[################################################################################                                                                                         ]\r[################################################################################                                                                                         ]\r[################################################################################                                                                                         ]\r[#################################################################################                                                                                        ]\r[#################################################################################                                                                                        ]\r[##################################################################################                                                                                       ]\r[##################################################################################                                                                                       ]\r[##################################################################################                                                                                       ]\r[###################################################################################                                                                                      ]\r[###################################################################################                                                                                      ]\r[###################################################################################                                                                                      ]\r[####################################################################################                                                                                     ]\r[####################################################################################                                                                                     ]\r[#####################################################################################                                                                                    ]\r[#####################################################################################                                                                                    ]\r[#####################################################################################                                                                                    ]\r[######################################################################################                                                                                   ]\r[######################################################################################                                                                                   ]\r[######################################################################################                                                                                   ]\r[#######################################################################################                                                                                  ]\r[#######################################################################################                                                                                  ]\r[########################################################################################                                                                                 ]\r[########################################################################################                                                                                 ]\r[########################################################################################                                                                                 ]\r[#########################################################################################                                                                                ]\r[#########################################################################################                                                                                ]\r[#########################################################################################                                                                                ]\r[##########################################################################################                                                                               ]\r[##########################################################################################                                                                               ]\r[##########################################################################################                                                                               ]\r[###########################################################################################                                                                              ]\r[###########################################################################################                                                                              ]\r[############################################################################################                                                                             ]\r[############################################################################################                                                                             ]\r[############################################################################################                                                                             ]\r[#############################################################################################                                                                            ]\r[#############################################################################################                                                                            ]\r[#############################################################################################                                                                            ]\r[##############################################################################################                                                                           ]\r[##############################################################################################                                                                           ]\r[###############################################################################################                                                                          ]\r[###############################################################################################                                                                          ]\r[###############################################################################################                                                                          ]\r[################################################################################################                                                                         ]\r[################################################################################################                                                                         ]\r[################################################################################################                                                                         ]\r[#################################################################################################                                                                        ]\r[#################################################################################################                                                                        ]\r[#################################################################################################                                                                        ]\r[##################################################################################################                                                                       ]\r[##################################################################################################                                                                       ]\r[###################################################################################################                                                                      ]\r[###################################################################################################                                                                      ]\r[###################################################################################################                                                                      ]\r[####################################################################################################                                                                     ]\r[####################################################################################################                                                                     ]\r[####################################################################################################                                                                     ]\r[#####################################################################################################                                                                    ]\r[#####################################################################################################                                                                    ]\r[######################################################################################################                                                                   ]\r[######################################################################################################                                                                   ]\r[######################################################################################################                                                                   ]\r[#######################################################################################################                                                                  ]\r[#######################################################################################################                                                                  ]\r[#######################################################################################################                                                                  ]\r[########################################################################################################                                                                 ]\r[########################################################################################################                                                                 ]\r[#########################################################################################################                                                                ]\r[#########################################################################################################                                                                ]\r[#########################################################################################################                                                                ]\r[##########################################################################################################                                                               ]\r[##########################################################################################################                                                               ]\r[##########################################################################################################                                                               ]\r[###########################################################################################################                                                              ]\r[###########################################################################################################                                                              ]\r[###########################################################################################################                                                              ]\r[############################################################################################################                                                             ]\r[############################################################################################################                                                             ]\r[#############################################################################################################                                                            ]\r[#############################################################################################################                                                            ]\r[#############################################################################################################                                                            ]\r[##############################################################################################################                                                           ]\r[##############################################################################################################                                                           ]\r[##############################################################################################################                                                           ]\r[###############################################################################################################                                                          ]\r[###############################################################################################################                                                          ]\r[################################################################################################################                                                         ]\r[################################################################################################################                                                         ]\r[################################################################################################################                                                         ]\r[#################################################################################################################                                                        ]\r[#################################################################################################################                                                        ]\r[#################################################################################################################                                                        ]\r[##################################################################################################################                                                       ]\r[##################################################################################################################                                                       ]\r[###################################################################################################################                                                      ]\r[###################################################################################################################                                                      ]\r[###################################################################################################################                                                      ]\r[####################################################################################################################                                                     ]\r[####################################################################################################################                                                     ]\r[####################################################################################################################                                                     ]\r[#####################################################################################################################                                                    ]\r[#####################################################################################################################                                                    ]\r[#####################################################################################################################                                                    ]\r[######################################################################################################################                                                   ]\r[######################################################################################################################                                                   ]\r[#######################################################################################################################                                                  ]\r[#######################################################################################################################                                                  ]\r[#######################################################################################################################                                                  ]\r[########################################################################################################################                                                 ]\r[########################################################################################################################                                                 ]\r[########################################################################################################################                                                 ]\r[#########################################################################################################################                                                ]\r[#########################################################################################################################                                                ]\r[##########################################################################################################################                                               ]\r[##########################################################################################################################                                               ]\r[##########################################################################################################################                                               ]\r[###########################################################################################################################                                              ]\r[###########################################################################################################################                                              ]\r[###########################################################################################################################                                              ]\r[############################################################################################################################                                             ]\r[############################################################################################################################                                             ]\r[############################################################################################################################                                             ]\r[#############################################################################################################################                                            ]\r[#############################################################################################################################                                            ]\r[##############################################################################################################################                                           ]\r[##############################################################################################################################                                           ]\r[##############################################################################################################################                                           ]\r[###############################################################################################################################                                          ]\r[###############################################################################################################################                                          ]\r[###############################################################################################################################                                          ]\r[################################################################################################################################                                         ]\r[################################################################################################################################                                         ]\r[#################################################################################################################################                                        ]\r[#################################################################################################################################                                        ]\r[#################################################################################################################################                                        ]\r[##################################################################################################################################                                       ]\r[##################################################################################################################################                                       ]\r[##################################################################################################################################                                       ]\r[###################################################################################################################################                                      ]\r[###################################################################################################################################                                      ]\r[####################################################################################################################################                                     ]\r[####################################################################################################################################                                     ]\r[####################################################################################################################################                                     ]\r[#####################################################################################################################################                                    ]\r[#####################################################################################################################################                                    ]\r[#####################################################################################################################################                                    ]\r[######################################################################################################################################                                   ]\r[######################################################################################################################################                                   ]\r[######################################################################################################################################                                   ]\r[#######################################################################################################################################                                  ]\r[#######################################################################################################################################                                  ]\r[########################################################################################################################################                                 ]\r[########################################################################################################################################                                 ]\r[########################################################################################################################################                                 ]\r[#########################################################################################################################################                                ]\r[#########################################################################################################################################                                ]\r[#########################################################################################################################################                                ]\r[##########################################################################################################################################                               ]\r[##########################################################################################################################################                               ]\r[###########################################################################################################################################                              ]\r[###########################################################################################################################################                              ]\r[###########################################################################################################################################                              ]\r[############################################################################################################################################                             ]\r[############################################################################################################################################                             ]\r[############################################################################################################################################                             ]\r[#############################################################################################################################################                            ]\r[#############################################################################################################################################                            ]\r[##############################################################################################################################################                           ]\r[##############################################################################################################################################                           ]\r[##############################################################################################################################################                           ]\r[###############################################################################################################################################                          ]\r[###############################################################################################################################################                          ]\r[###############################################################################################################################################                          ]\r[################################################################################################################################################                         ]\r[################################################################################################################################################                         ]\r[################################################################################################################################################                         ]\r[#################################################################################################################################################                        ]\r[#################################################################################################################################################                        ]\r[##################################################################################################################################################                       ]\r[##################################################################################################################################################                       ]\r[##################################################################################################################################################                       ]\r[###################################################################################################################################################                      ]\r[###################################################################################################################################################                      ]\r[###################################################################################################################################################                      ]\r[####################################################################################################################################################                     ]\r[####################################################################################################################################################                     ]\r[#####################################################################################################################################################                    ]\r[#####################################################################################################################################################                    ]\r[#####################################################################################################################################################                    ]\r[######################################################################################################################################################                   ]\r[######################################################################################################################################################                   ]\r[######################################################################################################################################################                   ]\r[#######################################################################################################################################################                  ]\r[#######################################################################################################################################################                  ]\r[#######################################################################################################################################################                  ]\r[########################################################################################################################################################                 ]\r[########################################################################################################################################################                 ]\r[#########################################################################################################################################################                ]\r[#########################################################################################################################################################                ]\r[#########################################################################################################################################################                ]\r[##########################################################################################################################################################               ]\r[##########################################################################################################################################################               ]\r[##########################################################################################################################################################               ]\r[###########################################################################################################################################################              ]\r[###########################################################################################################################################################              ]\r[############################################################################################################################################################             ]\r[############################################################################################################################################################             ]\r[############################################################################################################################################################             ]\r[#############################################################################################################################################################            ]\r[#############################################################################################################################################################            ]\r[#############################################################################################################################################################            ]\r[##############################################################################################################################################################           ]\r[##############################################################################################################################################################           ]\r[###############################################################################################################################################################          ]\r[###############################################################################################################################################################          ]\r[###############################################################################################################################################################          ]\r[################################################################################################################################################################         ]\r[################################################################################################################################################################         ]\r[################################################################################################################################################################         ]\r[#################################################################################################################################################################        ]\r[#################################################################################################################################################################        ]\r[#################################################################################################################################################################        ]\r[##################################################################################################################################################################       ]\r[##################################################################################################################################################################       ]\r[###################################################################################################################################################################      ]\r[###################################################################################################################################################################      ]\r[###################################################################################################################################################################      ]\r[####################################################################################################################################################################     ]\r[####################################################################################################################################################################     ]\r[####################################################################################################################################################################     ]\r[#####################################################################################################################################################################    ]\r[#####################################################################################################################################################################    ]\r[######################################################################################################################################################################   ]\r[######################################################################################################################################################################   ]\r[######################################################################################################################################################################   ]\r[#######################################################################################################################################################################  ]\r[#######################################################################################################################################################################  ]\r[#######################################################################################################################################################################  ]\r[######################################################################################################################################################################## ]\r[######################################################################################################################################################################## ]\r[#########################################################################################################################################################################]\r                                                                                                                                                                           \rReading symbols from /lib64/libm.so.6
\r[#########################################################################################################################################################################]\r                                                                                                                                                                           \rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[                                                                                                                                                                         ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[#                                                                                                                                                                        ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[##                                                                                                                                                                       ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[###                                                                                                                                                                      ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[####                                                                                                                                                                     ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[#####                                                                                                                                                                    ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[######                                                                                                                                                                   ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[#######                                                                                                                                                                  ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[########                                                                                                                                                                 ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[#########                                                                                                                                                                ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[##########                                                                                                                                                               ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[###########                                                                                                                                                              ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[############                                                                                                                                                             ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[#############                                                                                                                                                            ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[##############                                                                                                                                                           ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[###############                                                                                                                                                          ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[################                                                                                                                                                         ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[#################                                                                                                                                                        ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[##################                                                                                                                                                       ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[###################                                                                                                                                                      ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[####################                                                                                                                                                     ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[#####################                                                                                                                                                    ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[######################                                                                                                                                                   ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[#######################                                                                                                                                                  ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[########################                                                                                                                                                 ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[#########################                                                                                                                                                ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[##########################                                                                                                                                               ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[###########################                                                                                                                                              ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[############################                                                                                                                                             ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[#############################                                                                                                                                            ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[##############################                                                                                                                                           ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[###############################                                                                                                                                          ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[################################                                                                                                                                         ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[#################################                                                                                                                                        ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[##################################                                                                                                                                       ]\r[###################################                                                                                                                                      ]\r[###################################                                                                                                                                      ]\r[###################################                                                                                                                                      ]\r[###################ERROR: internal buffer is full.
UNRESOLVED: gdb.base/attach.exp: starting with --pid
killing 13952
Executing on build: kill -9 13952    (timeout = 300)
spawn -ignore SIGHUP kill -9 13952
closing exp9
waiting for exp9
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
spawn /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../../gdb/gdb -nw -nx -data-directory /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/../data-directory -iex set height 0 -iex set width 0 --pid=13985 -ex start
GNU gdb (GDB) 7.12.50.20170413-git
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Attaching to process 13985
Reading symbols from /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach
\r[]\r[]\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libm-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libm.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/libc-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/libc.so.6
\r[]\r\rReading symbols from /usr/lib/debug/usr/lib64/ld-2.22.so.debug
\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r[]\r\rReading symbols from /lib64/ld-linux-x86-64.so.2
\r[]\r\rmain () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:18
18	  while (! should_exit)
The program being debugged has been started already.
Start it from the beginning? (y or n) PASS: gdb.base/attach.exp: cmdline attach run: run to prompt
y
Temporary breakpoint 1 at 0x4005de: file /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c, line 14.
Starting program: /home/pedro/brno/pedro/gdb/mygit/build/gdb/testsuite/outputs/gdb.base/attach/attach 

Temporary breakpoint 1, main () at /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.c:14
14	  int  local_i = 0;
(gdb) PASS: gdb.base/attach.exp: cmdline attach run: run to main
killing 13985
Executing on build: kill -9 13985    (timeout = 300)
spawn -ignore SIGHUP kill -9 13985
closing exp9
waiting for exp9
testcase /home/pedro/gdb/mygit/src/gdb/testsuite/gdb.base/attach.exp completed in 24 seconds


		=== gdb Summary ===

# of expected passes		25
# of unresolved testcases	1

runtest completed at Tue Apr 18 18:13:03 2017

  reply	other threads:[~2017-04-18 17:43 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-13  4:17 [RFA 0/2] Fix PR cli/19551 Tom Tromey
2017-04-13  4:17 ` [RFA 2/2] PR cli/19551 - change formatting of "Reading symbols" messages Tom Tromey
2017-04-18 17:43   ` Pedro Alves [this message]
2017-04-18 17:44     ` Pedro Alves
2017-04-20  0:11     ` Tom Tromey
2017-04-27 21:40   ` Simon Marchi
2017-04-27 23:16     ` Tom Tromey
2017-04-27 23:53       ` Simon Marchi
2017-05-29 17:24     ` Tom Tromey
2017-04-13  4:44 ` [RFA 1/2] Use a distinguishing name for minidebug objfile Tom Tromey
2017-04-18 17:42   ` Pedro Alves
2017-04-19  3:11     ` Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3c04e1c7-7192-07ed-b2ca-ce9ebc0b99a6@redhat.com \
    --to=palves@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=tom@tromey.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox