Skip to content

Commit

Permalink
Sort by test names everywhere in netlink html.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Aug 27, 2024
1 parent 54629fe commit d42483a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netlink-html.pl
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ sub write_html_date_file {
print $html " <th></th>\n </tr>\n";
print $html " </thead>\n <tbody>\n";

my @tests = sort { $T{$b}{severity} <=> $T{$a}{severity} || $a cmp $b }
keys %T;
my @tests = sort { $T{$b}{severity} <=> $T{$a}{severity} ||
$TESTNAME{$a} cmp $TESTNAME{$b} } keys %T;
foreach my $test (@tests) {
print "." if $verbose;
(my $testcmd = $test) =~ s/_/ /g;
Expand Down

0 comments on commit d42483a

Please sign in to comment.