Skip to content

Commit

Permalink
Print value into netlink html table also for xpass result.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Dec 26, 2023
1 parent a0a2b05 commit 8975fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netlink-html.pl
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ sub html_hier_test_row {
foreach my $hv (@hiers) {
my $tv = $td->{$hv->{key}};
my $vv = $vt->{$hv->{key}};
if ($tv && ($tv->{status} eq 'PASS')) {
if ($tv && ($tv->{status} =~ /^X?PASS$/)) {
print $html " <td>$vv->[$i]{number}</td>\n";
} else {
print $html " <td></td>\n";
Expand Down

0 comments on commit 8975fbc

Please sign in to comment.