search for: debugger_script_fil

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

Did you mean: debugger_script_file
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...e llgdb.py wrapper script which +# translates gdb commands into their lldb equivalents. + +use File::Basename; +use Config; +use Cwd; + +my $testcase_file = $ARGV[0]; +my $executable_file = $ARGV[1]; + +my $input_filename = basename $testcase_file; +my $output_dir = dirname $executable_file; + +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; +my $output_file = "$output_dir/$input_filename.gdb.output"; + +my %cmd_map = (); +# Assume lldb to be the debugger on Darwin. +my $use_lldb = 0; +$use_lldb = 1 if ($Config{osname} eq "darwin"); + +# Extract debugger co...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
...+use File::Basename; >> +use Config; >> +use Cwd; >> + >> +my $testcase_file = $ARGV[0]; >> +my $executable_file = $ARGV[1]; >> + >> +my $input_filename = basename $testcase_file; >> +my $output_dir = dirname $executable_file; >> + >> +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; >> +my $output_file = "$output_dir/$input_filename.gdb.output"; >> + >> +my %cmd_map = (); >> +# Assume lldb to be the debugger on Darwin. >> +my $use_lldb = 0; >> +$use_lldb = 1 if ($Config{os...
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...nto their lldb equivalents. > + > +use File::Basename; > +use Config; > +use Cwd; > + > +my $testcase_file = $ARGV[0]; > +my $executable_file = $ARGV[1]; > + > +my $input_filename = basename $testcase_file; > +my $output_dir = dirname $executable_file; > + > +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; > +my $output_file = "$output_dir/$input_filename.gdb.output"; > + > +my %cmd_map = (); > +# Assume lldb to be the debugger on Darwin. > +my $use_lldb = 0; > +$use_lldb = 1 if ($Config{osname} eq "darwin&qu...
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