File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ function nipa_msec_to_str(msec) {
27
27
return "TLE" ;
28
28
}
29
29
30
+ function nipa_br_pfx_get ( name )
31
+ {
32
+ return name . substring ( 0 , name . length - 18 ) ;
33
+ }
34
+
30
35
function nipa_test_fullname ( v , r )
31
36
{
32
37
return v . remote + "/" + v . executor + "/" + r . group + "/" + r . test ;
Original file line number Diff line number Diff line change @@ -715,11 +715,6 @@ function rem_exe(v)
715
715
return v . remote + "/" + v . executor ;
716
716
}
717
717
718
- function br_pfx_get ( name )
719
- {
720
- return name . substring ( 0 , name . length - 18 ) ;
721
- }
722
-
723
718
var awol_executors ;
724
719
725
720
function load_result_table ( data_raw , reload )
@@ -749,7 +744,7 @@ function load_result_table(data_raw, reload)
749
744
v . start = new Date ( v . start ) ;
750
745
v . end = new Date ( v . end ) ;
751
746
752
- v . br_pfx = br_pfx_get ( v . branch ) ;
747
+ v . br_pfx = nipa_br_pfx_get ( v . branch ) ;
753
748
v . br_date = v . branch . substring ( v . branch . length - 17 ) ;
754
749
755
750
branches . add ( v . branch ) ;
@@ -810,7 +805,7 @@ function load_result_table(data_raw, reload)
810
805
if ( branch_execs [ br ] . has ( re ) )
811
806
continue ;
812
807
// Exec works on different branch stream
813
- if ( ! known_execs [ re ] . br_pfx . has ( br_pfx_get ( br ) ) )
808
+ if ( ! known_execs [ re ] . br_pfx . has ( nipa_br_pfx_get ( br ) ) )
814
809
continue ;
815
810
816
811
data_raw . push ( {
You can’t perform that action at this time.
0 commit comments