Fix tabs
This commit is contained in:
@@ -35,17 +35,17 @@ while (my $line = <$file>)
|
|||||||
# stdin working for subcommands in perl while still having a timeout.
|
# stdin working for subcommands in perl while still having a timeout.
|
||||||
my $total_syms_as_string;
|
my $total_syms_as_string;
|
||||||
(run (
|
(run (
|
||||||
command => "arm-none-eabi-nm pokeemerald.elf | wc -l",
|
command => "arm-none-eabi-nm pokeemerald.elf | wc -l",
|
||||||
buffer => \$total_syms_as_string,
|
buffer => \$total_syms_as_string,
|
||||||
timeout => 30
|
timeout => 30
|
||||||
))
|
))
|
||||||
or die "ERROR: Error while getting all symbols: $?";
|
or die "ERROR: Error while getting all symbols: $?";
|
||||||
|
|
||||||
my $undocumented_as_string;
|
my $undocumented_as_string;
|
||||||
(run (
|
(run (
|
||||||
command => "arm-none-eabi-nm pokeemerald.elf | grep \"Unknown_\\|sub_\" | wc -l",
|
command => "arm-none-eabi-nm pokeemerald.elf | grep \"Unknown_\\|sub_\" | wc -l",
|
||||||
buffer => \$undocumented_as_string,
|
buffer => \$undocumented_as_string,
|
||||||
timeout => 30
|
timeout => 30
|
||||||
))
|
))
|
||||||
or die "ERROR: Error while filtering for undocumented symbols: $?";
|
or die "ERROR: Error while filtering for undocumented symbols: $?";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user