debug: Avoid identical skip in driver debug

This commit is contained in:
Wilson Snyder 2012-07-21 09:16:19 -04:00
parent abe9ecd225
commit f3f34baa73
2 changed files with 5 additions and 3 deletions

View File

@ -92,8 +92,10 @@ sub diff_file {
my $a = shift;
my $b = shift;
# Compare the two tree files
my $tmp_a = "/tmp/$$.a";
my $tmp_b = "/tmp/$$.b";
(my $short_a = $a) =~ s/[^a-zA-Z0-9.]+/_/g;
(my $short_b = $b) =~ s/[^a-zA-Z0-9.]+/_/g;
my $tmp_a = "/tmp/${$}_${short_a}.a";
my $tmp_b = "/tmp/${$}_${short_b}.b";
my $vera = version_from($a);
my $verb = version_from($b);

View File

@ -204,7 +204,7 @@ sub usage {
sub debug {
$Debug = 1;
push @Opt_Driver_Verilator_Flags, "--debug";
push @Opt_Driver_Verilator_Flags, "--debug --no-skip-identical";
}
our $_Parameter_Next_Level;