repo.or.cz
/
Samba
/
vl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s4-drs: avoid calling unecesserly ldb_msg_find_attr_as_* as this call in unefficient
[Samba/vl.git]
/
script
/
show_test_time
blob
d9a18f034eabd6be688769f6edb07afaf687280a
1
#!/usr/bin/env perl
2
#
3
use
strict
;
4
my
%h
;
5
open
(
FH
,
"subunit-ls --times --no-passthrough|"
) ||
die
"pb with subunit-ls"
;
6
while
(<
FH
>)
7
{
8
chomp
();
9
my
@l
=
split
(
/ /
);
10
my
$val
=
@l
[
scalar
(
@l
)-
1
];
11
$h
{
join
(
' '
,
@l
)} =
$val
;
12
}
13
14
my
@sorted
=
sort
{
$h
{
$b
}<=>
$h
{
$a
} }
keys
(
%h
);
15
use
Data
::
Dumper
;
16
foreach
my
$l
(
@sorted
)
17
{
18
print
"
$l
\n
"
;
19
}