search for: my_debugg

Displaying 4 results from an estimated 4 matches for "my_debugg".

Did you mean: my_debugger
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...gt;= 0) { + $l = length("DEBUGGER:"); + $s = substr($line, $i + $l); + print OUTPUT "$s"; + } +} +print OUTPUT "\n"; +print OUTPUT "quit\n"; +close(INPUT); +close(OUTPUT); + +# setup debugger and debugger options to run a script. +my $my_debugger = $ENV{'DEBUGGER'}; +if (!$my_debugger) { + if ($use_lldb) { + my $path = dirname(Cwd::abs_path($0)); + $my_debugger = "/usr/bin/env python $path/llgdb.py"; + } else { + $my_debugger = "gdb"; + } +} + +# quiet / exit after cmdline / no ini...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
...); >> + print OUTPUT "$s"; >> + } >> +} >> +print OUTPUT "\n"; >> +print OUTPUT "quit\n"; >> +close(INPUT); >> +close(OUTPUT); >> + >> +# setup debugger and debugger options to run a script. >> +my $my_debugger = $ENV{'DEBUGGER'}; >> +if (!$my_debugger) { >> + if ($use_lldb) { >> + my $path = dirname(Cwd::abs_path($0)); >> + $my_debugger = "/usr/bin/env python $path/llgdb.py"; >> + } else { >> + $my_debugger = "gdb&quo...
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...> + $s = substr($line, $i + $l); > + print OUTPUT "$s"; > + } > +} > +print OUTPUT "\n"; > +print OUTPUT "quit\n"; > +close(INPUT); > +close(OUTPUT); > + > +# setup debugger and debugger options to run a script. > +my $my_debugger = $ENV{'DEBUGGER'}; > +if (!$my_debugger) { > + if ($use_lldb) { > + my $path = dirname(Cwd::abs_path($0)); > + $my_debugger = "/usr/bin/env python $path/llgdb.py"; > + } else { > + $my_debugger = "gdb"; > + } > +}...
2017 Nov 22
2
PSA: debuginfo-tests workflow changing slightly
I sorta enjoy debugging stuff like this, so if you don't mind, I'll dig into it once I get a chance -- traveling so, my access is a bit sketchy right now. I'll see if I can grab the logs and let you know if I find anything interesting. On Tue, Nov 21, 2017 at 7:04 PM, Zachary Turner <zturner at google.com> wrote: > That change was added specifically to workaround a failure