Displaying 4 results from an estimated 4 matches for "use_lldb".
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...= 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 commands from testcase. They are marked with DEBUGGER:
+# at the beginning of a comment line.
+open(INPUT, $testcase_file);
+open(OUTPUT, ">$debugger_script_file");
+while(<INPUT>) {
+ my($li...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
...e_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 commands from testcase. They are marked with DEBUGGER:
>> +# at the beginning of a comment line.
>> +open(INPUT, $testcase_file);
>> +open(OUTPUT, ">$debugger_s...
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...put_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 commands from testcase. They are marked with DEBUGGER:
> +# at the beginning of a comment line.
> +open(INPUT, $testcase_file);
> +open(OUTPUT, ">$debugger_script_file");
>...
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