Line Coverage for Module :
prim_esc_sender
| Line No. | Total | Covered | Percent |
TOTAL | | 59 | 54 | 91.53 |
CONT_ASSIGN | 79 | 1 | 1 | 100.00 |
CONT_ASSIGN | 80 | 1 | 1 | 100.00 |
CONT_ASSIGN | 85 | 1 | 1 | 100.00 |
ALWAYS | 108 | 47 | 42 | 89.36 |
ALWAYS | 216 | 9 | 9 | 100.00 |
78
79 1/1 assign ping_req_d = ping_req_i;
Tests: T1 T2 T3
80 1/1 assign esc_req_d = esc_req_i;
Tests: T1 T2 T3
81
82 // ping enable is 1 cycle pulse
83 // escalation pulse is always longer than 2 cycles
84 logic esc_p;
85 1/1 assign esc_p = esc_req_i | esc_req_q | (ping_req_d & ~ping_req_q);
Tests: T1 T2 T3
86
87 // This prevents further tool optimizations of the differential signal.
88 prim_sec_anchor_buf #(
89 .Width(2)
90 ) u_prim_buf_esc (
91 .in_i({~esc_p,
92 esc_p}),
93 .out_o({esc_tx_o.esc_n,
94 esc_tx_o.esc_p})
95 );
96
97 //////////////
98 // RX Logic //
99 //////////////
100
101 typedef enum logic [2:0] {Idle, CheckEscRespLo, CheckEscRespHi,
102 CheckPingResp0, CheckPingResp1, CheckPingResp2, CheckPingResp3} fsm_e;
103
104 fsm_e state_d, state_q;
105
106 always_comb begin : p_fsm
107 // default
108 1/1 state_d = state_q;
Tests: T1 T2 T3
109 1/1 ping_ok_o = 1'b0;
Tests: T1 T2 T3
110 1/1 integ_fail_o = sigint_detected;
Tests: T1 T2 T3
111
112 1/1 unique case (state_q)
Tests: T1 T2 T3
113 // wait for ping or escalation enable
114 Idle: begin
115 1/1 if (esc_req_i) begin
Tests: T1 T2 T3
116 1/1 state_d = CheckEscRespHi;
Tests: T1 T2 T3
117 1/1 end else if (ping_req_d & ~ping_req_q) begin
Tests: T1 T2 T3
118 1/1 state_d = CheckPingResp0;
Tests: T1 T2 T3
119 end
MISSING_ELSE
120 // any assertion of the response signal
121 // signal here will trigger a sigint error
122 1/1 if (resp) begin
Tests: T1 T2 T3
123 1/1 integ_fail_o = 1'b1;
Tests: T1 T2 T3
124 end
MISSING_ELSE
125 end
126 // check whether response is 0
127 CheckEscRespLo: begin
128 1/1 state_d = CheckEscRespHi;
Tests: T1 T2 T3
129 1/1 if (!esc_tx_o.esc_p || resp) begin
Tests: T1 T2 T3
130 1/1 state_d = Idle;
Tests: T1 T2 T3
131 1/1 integ_fail_o = sigint_detected | resp;
Tests: T1 T2 T3
132 end
MISSING_ELSE
133 end
134 // check whether response is 1
135 CheckEscRespHi: begin
136 1/1 state_d = CheckEscRespLo;
Tests: T1 T2 T3
137 1/1 if (!esc_tx_o.esc_p || !resp) begin
Tests: T1 T2 T3
138 1/1 state_d = Idle;
Tests: T1 T2 T3
139 1/1 integ_fail_o = sigint_detected | ~resp;
Tests: T1 T2 T3
140 end
MISSING_ELSE
141 end
142 // start of ping response sequence
143 // we expect the sequence "1010"
144 CheckPingResp0: begin
145 1/1 state_d = CheckPingResp1;
Tests: T1 T2 T3
146 // abort sequence immediately if escalation is signalled,
147 // jump to escalation response checking (lo state)
148 1/1 if (esc_req_i) begin
Tests: T1 T2 T3
149 1/1 state_d = CheckEscRespLo;
Tests: T4
150 // abort if response is wrong
151 1/1 end else if (!resp) begin
Tests: T1 T2 T3
152 1/1 state_d = Idle;
Tests: T1 T2 T3
153 1/1 integ_fail_o = 1'b1;
Tests: T1 T2 T3
154 end
MISSING_ELSE
155 end
156 CheckPingResp1: begin
157 1/1 state_d = CheckPingResp2;
Tests: T1 T2 T3
158 // abort sequence immediately if escalation is signalled,
159 // jump to escalation response checking (hi state)
160 1/1 if (esc_req_i) begin
Tests: T1 T2 T3
161 1/1 state_d = CheckEscRespHi;
Tests: T5 T6 T7
162 // abort if response is wrong
163 1/1 end else if (resp) begin
Tests: T1 T2 T3
164 0/1 ==> state_d = Idle;
165 0/1 ==> integ_fail_o = 1'b1;
166 end
MISSING_ELSE
167 end
168 CheckPingResp2: begin
169 1/1 state_d = CheckPingResp3;
Tests: T1 T2 T3
170 // abort sequence immediately if escalation is signalled,
171 // jump to escalation response checking (lo state)
172 1/1 if (esc_req_i) begin
Tests: T1 T2 T3
173 1/1 state_d = CheckEscRespLo;
Tests: T1 T2 T8
174 // abort if response is wrong
175 1/1 end else if (!resp) begin
Tests: T1 T2 T3
176 0/1 ==> state_d = Idle;
177 0/1 ==> integ_fail_o = 1'b1;
178 end
MISSING_ELSE
179 end
180 CheckPingResp3: begin
181 1/1 state_d = Idle;
Tests: T1 T2 T3
182 // abort sequence immediately if escalation is signalled,
183 // jump to escalation response checking (hi state)
184 1/1 if (esc_req_i) begin
Tests: T1 T2 T3
185 1/1 state_d = CheckEscRespHi;
Tests: T9 T10
186 // abort if response is wrong
187 1/1 end else if (resp) begin
Tests: T1 T2 T3
188 0/1 ==> integ_fail_o = 1'b1;
189 end else begin
190 1/1 ping_ok_o = ping_req_i;
Tests: T1 T2 T3
191 end
192 end
193 default : state_d = Idle;
194 endcase
195
196 // a sigint error will reset the state machine
197 // and have it pause for two cycles to let the
198 // receiver recover
199 1/1 if (sigint_detected) begin
Tests: T1 T2 T3
200 1/1 ping_ok_o = 1'b0;
Tests: T1 T2 T3
201 1/1 state_d = Idle;
Tests: T1 T2 T3
202 end
MISSING_ELSE
203
204 // escalation takes precedence,
205 // immediately return ok in that case
206 1/1 if ((esc_req_i || esc_req_q || esc_req_q1) && ping_req_i) begin
Tests: T1 T2 T3
207 1/1 ping_ok_o = 1'b1;
Tests: T1 T2 T3
208 end
MISSING_ELSE
209 end
210
211 ///////////////
212 // Registers //
213 ///////////////
214
215 always_ff @(posedge clk_i or negedge rst_ni) begin : p_regs
216 1/1 if (!rst_ni) begin
Tests: T1 T2 T3
217 1/1 state_q <= Idle;
Tests: T1 T2 T3
218 1/1 esc_req_q <= 1'b0;
Tests: T1 T2 T3
219 1/1 esc_req_q1 <= 1'b0;
Tests: T1 T2 T3
220 1/1 ping_req_q <= 1'b0;
Tests: T1 T2 T3
221 end else begin
222 1/1 state_q <= state_d;
Tests: T1 T2 T3
223 1/1 esc_req_q <= esc_req_d;
Tests: T1 T2 T3
224 1/1 esc_req_q1 <= esc_req_q;
Tests: T1 T2 T3
225 1/1 ping_req_q <= ping_req_d;
Tests: T1 T2 T3
Cond Coverage for Module :
prim_esc_sender
| Total | Covered | Percent |
Conditions | 29 | 25 | 86.21 |
Logical | 29 | 25 | 86.21 |
Non-Logical | 0 | 0 | |
Event | 0 | 0 | |
LINE 85
EXPRESSION (esc_req_i | esc_req_q | (ping_req_d & ((~ping_req_q))))
----1---- ----2---- ---------------3--------------
-1- | -2- | -3- | Status | Tests |
0 | 0 | 0 | Covered | T1,T2,T3 |
0 | 0 | 1 | Covered | T1,T2,T3 |
0 | 1 | 0 | Covered | T1,T2,T3 |
1 | 0 | 0 | Covered | T1,T2,T3 |
LINE 85
SUB-EXPRESSION (ping_req_d & ((~ping_req_q)))
-----1---- -------2-------
-1- | -2- | Status | Tests |
0 | 1 | Covered | T1,T2,T3 |
1 | 0 | Covered | T1,T2,T3 |
1 | 1 | Covered | T1,T2,T3 |
LINE 117
EXPRESSION (ping_req_d & ((~ping_req_q)))
-----1---- -------2-------
-1- | -2- | Status | Tests |
0 | 1 | Covered | T1,T2,T3 |
1 | 0 | Covered | T1,T2,T3 |
1 | 1 | Covered | T1,T2,T3 |
LINE 129
EXPRESSION (((!esc_tx_o.esc_p)) || resp)
---------1--------- --2-
-1- | -2- | Status | Tests |
0 | 0 | Covered | T1,T2,T3 |
0 | 1 | Covered | T1,T2,T11 |
1 | 0 | Covered | T1,T2,T3 |
LINE 131
EXPRESSION (sigint_detected | resp)
-------1------- --2-
-1- | -2- | Status | Tests |
0 | 0 | Covered | T1,T2,T3 |
0 | 1 | Not Covered | |
1 | 0 | Not Covered | |
LINE 137
EXPRESSION (((!esc_tx_o.esc_p)) || ((!resp)))
---------1--------- ----2----
-1- | -2- | Status | Tests |
0 | 0 | Covered | T1,T2,T3 |
0 | 1 | Covered | T1,T2,T3 |
1 | 0 | Covered | T1,T2,T3 |
LINE 139
EXPRESSION (sigint_detected | ((~resp)))
-------1------- ----2----
-1- | -2- | Status | Tests |
0 | 0 | Covered | T1,T2,T3 |
0 | 1 | Not Covered | |
1 | 0 | Not Covered | |
LINE 206
EXPRESSION ((esc_req_i || esc_req_q || esc_req_q1) && ping_req_i)
-------------------1------------------ -----2----
-1- | -2- | Status | Tests |
0 | 1 | Covered | T1,T2,T3 |
1 | 0 | Covered | T1,T2,T3 |
1 | 1 | Covered | T1,T2,T3 |
LINE 206
SUB-EXPRESSION (esc_req_i || esc_req_q || esc_req_q1)
----1---- ----2---- -----3----
-1- | -2- | -3- | Status | Tests |
0 | 0 | 0 | Covered | T1,T2,T3 |
0 | 0 | 1 | Covered | T1,T2,T3 |
0 | 1 | 0 | Covered | T4,T5,T6 |
1 | 0 | 0 | Covered | T1,T2,T3 |
Toggle Coverage for Module :
prim_esc_sender
| Total | Covered | Percent |
Totals |
10 |
10 |
100.00 |
Total Bits |
20 |
20 |
100.00 |
Total Bits 0->1 |
10 |
10 |
100.00 |
Total Bits 1->0 |
10 |
10 |
100.00 |
| | | |
Ports |
10 |
10 |
100.00 |
Port Bits |
20 |
20 |
100.00 |
Port Bits 0->1 |
10 |
10 |
100.00 |
Port Bits 1->0 |
10 |
10 |
100.00 |
Port Details
Name | Toggle | Toggle 1->0 | Tests | Toggle 0->1 | Tests | Direction |
clk_i |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
rst_ni |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
ping_req_i |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
ping_ok_o |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
OUTPUT |
integ_fail_o |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
OUTPUT |
esc_req_i |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
esc_rx_i.resp_n |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
esc_rx_i.resp_p |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
INPUT |
esc_tx_o.esc_n |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
OUTPUT |
esc_tx_o.esc_p |
Yes |
Yes |
T1,T2,T3 |
Yes |
T1,T2,T3 |
OUTPUT |
FSM Coverage for Module :
prim_esc_sender
Summary for FSM :: state_q
| Total | Covered | Percent | |
States |
7 |
7 |
100.00 |
(Not included in score) |
Transitions |
17 |
17 |
100.00 |
|
Sequences |
0 |
0 |
|
|
State, Transition and Sequence Details for FSM :: state_q
states | Line No. | Covered | Tests |
CheckEscRespHi |
116 |
Covered |
T1,T2,T3 |
CheckEscRespLo |
136 |
Covered |
T1,T2,T3 |
CheckPingResp0 |
118 |
Covered |
T1,T2,T3 |
CheckPingResp1 |
145 |
Covered |
T1,T2,T3 |
CheckPingResp2 |
157 |
Covered |
T1,T2,T3 |
CheckPingResp3 |
169 |
Covered |
T1,T2,T3 |
Idle |
130 |
Covered |
T1,T2,T3 |
transitions | Line No. | Covered | Tests |
CheckEscRespHi->CheckEscRespLo |
136 |
Covered |
T1,T2,T3 |
CheckEscRespHi->Idle |
138 |
Covered |
T1,T2,T3 |
CheckEscRespLo->CheckEscRespHi |
128 |
Covered |
T1,T2,T3 |
CheckEscRespLo->Idle |
130 |
Covered |
T1,T2,T3 |
CheckPingResp0->CheckEscRespLo |
149 |
Covered |
T4 |
CheckPingResp0->CheckPingResp1 |
145 |
Covered |
T1,T2,T3 |
CheckPingResp0->Idle |
152 |
Covered |
T1,T2,T3 |
CheckPingResp1->CheckEscRespHi |
161 |
Covered |
T5,T6,T7 |
CheckPingResp1->CheckPingResp2 |
157 |
Covered |
T1,T2,T3 |
CheckPingResp1->Idle |
164 |
Covered |
T1,T2,T11 |
CheckPingResp2->CheckEscRespLo |
173 |
Covered |
T1,T2,T8 |
CheckPingResp2->CheckPingResp3 |
169 |
Covered |
T1,T2,T3 |
CheckPingResp2->Idle |
176 |
Covered |
T10 |
CheckPingResp3->CheckEscRespHi |
185 |
Covered |
T9,T10 |
CheckPingResp3->Idle |
181 |
Covered |
T1,T2,T3 |
Idle->CheckEscRespHi |
116 |
Covered |
T1,T2,T3 |
Idle->CheckPingResp0 |
118 |
Covered |
T1,T2,T3 |
Branch Coverage for Module :
prim_esc_sender
| Line No. | Total | Covered | Percent |
Branches |
|
28 |
24 |
85.71 |
CASE |
112 |
22 |
18 |
81.82 |
IF |
199 |
2 |
2 |
100.00 |
IF |
206 |
2 |
2 |
100.00 |
IF |
216 |
2 |
2 |
100.00 |
112 unique case (state_q)
-1-
113 // wait for ping or escalation enable
114 Idle: begin
115 if (esc_req_i) begin
-2-
116 state_d = CheckEscRespHi;
==>
117 end else if (ping_req_d & ~ping_req_q) begin
-3-
118 state_d = CheckPingResp0;
==>
119 end
MISSING_ELSE
==>
120 // any assertion of the response signal
121 // signal here will trigger a sigint error
122 if (resp) begin
-4-
123 integ_fail_o = 1'b1;
==>
124 end
MISSING_ELSE
==>
125 end
126 // check whether response is 0
127 CheckEscRespLo: begin
128 state_d = CheckEscRespHi;
129 if (!esc_tx_o.esc_p || resp) begin
-5-
130 state_d = Idle;
==>
131 integ_fail_o = sigint_detected | resp;
132 end
MISSING_ELSE
==>
133 end
134 // check whether response is 1
135 CheckEscRespHi: begin
136 state_d = CheckEscRespLo;
137 if (!esc_tx_o.esc_p || !resp) begin
-6-
138 state_d = Idle;
==>
139 integ_fail_o = sigint_detected | ~resp;
140 end
MISSING_ELSE
==>
141 end
142 // start of ping response sequence
143 // we expect the sequence "1010"
144 CheckPingResp0: begin
145 state_d = CheckPingResp1;
146 // abort sequence immediately if escalation is signalled,
147 // jump to escalation response checking (lo state)
148 if (esc_req_i) begin
-7-
149 state_d = CheckEscRespLo;
==>
150 // abort if response is wrong
151 end else if (!resp) begin
-8-
152 state_d = Idle;
==>
153 integ_fail_o = 1'b1;
154 end
MISSING_ELSE
==>
155 end
156 CheckPingResp1: begin
157 state_d = CheckPingResp2;
158 // abort sequence immediately if escalation is signalled,
159 // jump to escalation response checking (hi state)
160 if (esc_req_i) begin
-9-
161 state_d = CheckEscRespHi;
==>
162 // abort if response is wrong
163 end else if (resp) begin
-10-
164 state_d = Idle;
==>
165 integ_fail_o = 1'b1;
166 end
MISSING_ELSE
==>
167 end
168 CheckPingResp2: begin
169 state_d = CheckPingResp3;
170 // abort sequence immediately if escalation is signalled,
171 // jump to escalation response checking (lo state)
172 if (esc_req_i) begin
-11-
173 state_d = CheckEscRespLo;
==>
174 // abort if response is wrong
175 end else if (!resp) begin
-12-
176 state_d = Idle;
==>
177 integ_fail_o = 1'b1;
178 end
MISSING_ELSE
==>
179 end
180 CheckPingResp3: begin
181 state_d = Idle;
182 // abort sequence immediately if escalation is signalled,
183 // jump to escalation response checking (hi state)
184 if (esc_req_i) begin
-13-
185 state_d = CheckEscRespHi;
==>
186 // abort if response is wrong
187 end else if (resp) begin
-14-
188 integ_fail_o = 1'b1;
==>
189 end else begin
190 ping_ok_o = ping_req_i;
==>
191 end
192 end
193 default : state_d = Idle;
==>
Branches:
-1- | -2- | -3- | -4- | -5- | -6- | -7- | -8- | -9- | -10- | -11- | -12- | -13- | -14- | Status | Tests |
Idle |
1 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
Idle |
0 |
1 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
Idle |
0 |
0 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
Idle |
- |
- |
1 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
Idle |
- |
- |
0 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckEscRespLo |
- |
- |
- |
1 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckEscRespLo |
- |
- |
- |
0 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckEscRespHi |
- |
- |
- |
- |
1 |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckEscRespHi |
- |
- |
- |
- |
0 |
- |
- |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckPingResp0 |
- |
- |
- |
- |
- |
1 |
- |
- |
- |
- |
- |
- |
- |
Covered |
T4 |
CheckPingResp0 |
- |
- |
- |
- |
- |
0 |
1 |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckPingResp0 |
- |
- |
- |
- |
- |
0 |
0 |
- |
- |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckPingResp1 |
- |
- |
- |
- |
- |
- |
- |
1 |
- |
- |
- |
- |
- |
Covered |
T5,T6,T7 |
CheckPingResp1 |
- |
- |
- |
- |
- |
- |
- |
0 |
1 |
- |
- |
- |
- |
Not Covered |
|
CheckPingResp1 |
- |
- |
- |
- |
- |
- |
- |
0 |
0 |
- |
- |
- |
- |
Covered |
T1,T2,T3 |
CheckPingResp2 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
1 |
- |
- |
- |
Covered |
T1,T2,T8 |
CheckPingResp2 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
0 |
1 |
- |
- |
Not Covered |
|
CheckPingResp2 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
0 |
0 |
- |
- |
Covered |
T1,T2,T3 |
CheckPingResp3 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
1 |
- |
Covered |
T9,T10 |
CheckPingResp3 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
0 |
1 |
Not Covered |
|
CheckPingResp3 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
0 |
0 |
Covered |
T1,T2,T3 |
default |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
Not Covered |
|
199 if (sigint_detected) begin
-1-
200 ping_ok_o = 1'b0;
==>
201 state_d = Idle;
202 end
MISSING_ELSE
==>
Branches:
-1- | Status | Tests |
1 |
Covered |
T1,T2,T3 |
0 |
Covered |
T1,T2,T3 |
206 if ((esc_req_i || esc_req_q || esc_req_q1) && ping_req_i) begin
-1-
207 ping_ok_o = 1'b1;
==>
208 end
MISSING_ELSE
==>
Branches:
-1- | Status | Tests |
1 |
Covered |
T1,T2,T3 |
0 |
Covered |
T1,T2,T3 |
216 if (!rst_ni) begin
-1-
217 state_q <= Idle;
==>
218 esc_req_q <= 1'b0;
219 esc_req_q1 <= 1'b0;
220 ping_req_q <= 1'b0;
221 end else begin
222 state_q <= state_d;
==>
Branches:
-1- | Status | Tests |
1 |
Covered |
T1,T2,T3 |
0 |
Covered |
T1,T2,T3 |
Assert Coverage for Module :
prim_esc_sender
Assertion Details
DiffEncCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
5410 |
0 |
0 |
T1 |
505 |
266 |
0 |
0 |
T2 |
499 |
267 |
0 |
0 |
T3 |
481 |
278 |
0 |
0 |
T4 |
513 |
282 |
0 |
0 |
T8 |
466 |
277 |
0 |
0 |
T9 |
503 |
276 |
0 |
0 |
T10 |
554 |
270 |
0 |
0 |
T11 |
448 |
238 |
0 |
0 |
T12 |
587 |
299 |
0 |
0 |
T13 |
478 |
259 |
0 |
0 |
EscCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
441 |
0 |
0 |
T1 |
505 |
21 |
0 |
0 |
T2 |
499 |
28 |
0 |
0 |
T3 |
481 |
25 |
0 |
0 |
T4 |
513 |
31 |
0 |
0 |
T8 |
466 |
22 |
0 |
0 |
T9 |
503 |
22 |
0 |
0 |
T10 |
554 |
27 |
0 |
0 |
T11 |
448 |
9 |
0 |
0 |
T12 |
587 |
27 |
0 |
0 |
T13 |
478 |
18 |
0 |
0 |
EscPKnownO_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
5410 |
0 |
0 |
T1 |
505 |
266 |
0 |
0 |
T2 |
499 |
267 |
0 |
0 |
T3 |
481 |
278 |
0 |
0 |
T4 |
513 |
282 |
0 |
0 |
T8 |
466 |
277 |
0 |
0 |
T9 |
503 |
276 |
0 |
0 |
T10 |
554 |
270 |
0 |
0 |
T11 |
448 |
238 |
0 |
0 |
T12 |
587 |
299 |
0 |
0 |
T13 |
478 |
259 |
0 |
0 |
EscPingCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
36 |
0 |
0 |
T1 |
505 |
2 |
0 |
0 |
T2 |
499 |
2 |
0 |
0 |
T3 |
481 |
2 |
0 |
0 |
T4 |
513 |
1 |
0 |
0 |
T8 |
466 |
2 |
0 |
0 |
T9 |
503 |
2 |
0 |
0 |
T10 |
554 |
2 |
0 |
0 |
T11 |
448 |
2 |
0 |
0 |
T12 |
587 |
2 |
0 |
0 |
T13 |
478 |
2 |
0 |
0 |
IntegFailKnownO_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
5410 |
0 |
0 |
T1 |
505 |
266 |
0 |
0 |
T2 |
499 |
267 |
0 |
0 |
T3 |
481 |
278 |
0 |
0 |
T4 |
513 |
282 |
0 |
0 |
T8 |
466 |
277 |
0 |
0 |
T9 |
503 |
276 |
0 |
0 |
T10 |
554 |
270 |
0 |
0 |
T11 |
448 |
238 |
0 |
0 |
T12 |
587 |
299 |
0 |
0 |
T13 |
478 |
259 |
0 |
0 |
PingCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
0 |
0 |
20 |
PingOkKnownO_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
5410 |
0 |
0 |
T1 |
505 |
266 |
0 |
0 |
T2 |
499 |
267 |
0 |
0 |
T3 |
481 |
278 |
0 |
0 |
T4 |
513 |
282 |
0 |
0 |
T8 |
466 |
277 |
0 |
0 |
T9 |
503 |
276 |
0 |
0 |
T10 |
554 |
270 |
0 |
0 |
T11 |
448 |
238 |
0 |
0 |
T12 |
587 |
299 |
0 |
0 |
T13 |
478 |
259 |
0 |
0 |
SigIntBackCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
98 |
0 |
0 |
T1 |
505 |
5 |
0 |
0 |
T2 |
499 |
5 |
0 |
0 |
T3 |
481 |
5 |
0 |
0 |
T4 |
513 |
5 |
0 |
0 |
T8 |
466 |
5 |
0 |
0 |
T9 |
503 |
5 |
0 |
0 |
T10 |
554 |
5 |
0 |
0 |
T11 |
448 |
5 |
0 |
0 |
T12 |
587 |
5 |
0 |
0 |
T13 |
478 |
5 |
0 |
0 |
SigIntCheck0_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
41 |
0 |
0 |
T1 |
505 |
2 |
0 |
0 |
T2 |
499 |
2 |
0 |
0 |
T3 |
481 |
2 |
0 |
0 |
T4 |
513 |
2 |
0 |
0 |
T8 |
466 |
2 |
0 |
0 |
T9 |
503 |
2 |
0 |
0 |
T10 |
554 |
2 |
0 |
0 |
T11 |
448 |
2 |
0 |
0 |
T12 |
587 |
2 |
0 |
0 |
T13 |
478 |
2 |
0 |
0 |
SigIntCheck1_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
0 |
0 |
20 |
SigIntCheck2_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
0 |
0 |
20 |
SigIntCheck3_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
57 |
0 |
0 |
T1 |
505 |
3 |
0 |
0 |
T2 |
499 |
3 |
0 |
0 |
T3 |
481 |
3 |
0 |
0 |
T4 |
513 |
3 |
0 |
0 |
T8 |
466 |
3 |
0 |
0 |
T9 |
503 |
3 |
0 |
0 |
T10 |
554 |
3 |
0 |
0 |
T11 |
448 |
3 |
0 |
0 |
T12 |
587 |
3 |
0 |
0 |
T13 |
478 |
3 |
0 |
0 |
StateEscRespHiBackCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
261 |
0 |
0 |
T1 |
505 |
12 |
0 |
0 |
T2 |
499 |
15 |
0 |
0 |
T3 |
481 |
15 |
0 |
0 |
T4 |
513 |
17 |
0 |
0 |
T8 |
466 |
12 |
0 |
0 |
T9 |
503 |
14 |
0 |
0 |
T10 |
554 |
16 |
0 |
0 |
T11 |
448 |
7 |
0 |
0 |
T12 |
587 |
16 |
0 |
0 |
T13 |
478 |
11 |
0 |
0 |
StateEscRespHiCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
190 |
0 |
0 |
T1 |
505 |
9 |
0 |
0 |
T2 |
499 |
13 |
0 |
0 |
T3 |
481 |
11 |
0 |
0 |
T4 |
513 |
14 |
0 |
0 |
T8 |
466 |
9 |
0 |
0 |
T9 |
503 |
10 |
0 |
0 |
T10 |
554 |
12 |
0 |
0 |
T11 |
448 |
3 |
0 |
0 |
T12 |
587 |
12 |
0 |
0 |
T13 |
478 |
8 |
0 |
0 |
StateEscRespLoBackCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
220 |
0 |
0 |
T1 |
505 |
11 |
0 |
0 |
T2 |
499 |
15 |
0 |
0 |
T3 |
481 |
12 |
0 |
0 |
T4 |
513 |
16 |
0 |
0 |
T8 |
466 |
12 |
0 |
0 |
T9 |
503 |
10 |
0 |
0 |
T10 |
554 |
13 |
0 |
0 |
T11 |
448 |
5 |
0 |
0 |
T12 |
587 |
13 |
0 |
0 |
T13 |
478 |
9 |
0 |
0 |
StateEscRespLoCheck_A
Name | Attempts | Real Successes | Failures | Incomplete |
Total |
10039 |
213 |
0 |
0 |
T1 |
505 |
10 |
0 |
0 |
T2 |
499 |
14 |
0 |
0 |
T3 |
481 |
12 |
0 |
0 |
T4 |
513 |
15 |
0 |
0 |
T8 |
466 |
11 |
0 |
0 |
T9 |
503 |
10 |
0 |
0 |
T10 |
554 |
13 |
0 |
0 |
T11 |
448 |
5 |
0 |
0 |
T12 |
587 |
13 |
0 |
0 |
T13 |
478 |
9 |
0 |
0 |