Displaying 4 results from an estimated 4 matches for "executable_file".
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...the debugger output is checked, using FileCheck, to validate
+# debugging information.
+#
+# On Darwin the default is to use the 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...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
...t;> +#
>> +# On Darwin the default is to use the 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....
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...lidate
> +# debugging information.
> +#
> +# On Darwin the default is to use the 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";
> +...
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