Skip to content

Commit 36bf400

Browse files
committed
fix a delay in factory test to match a revised delay
waiting a bit longer for the EC to boot requires the confirmation time threshold for the EC boot to also be stretched out
1 parent c86df3d commit 36bf400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/shellchat/src/cmds/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ impl<'a> ShellCmdApi<'a> for Test {
255255
env.com.reseed_ec_trng().unwrap();
256256
let ut_after = env.com.get_ec_uptime().unwrap();
257257

258-
if ut < ut_after || ut_after > 4200 {
258+
if ut < ut_after || ut_after > 8500 {
259259
log::info!("{}|ECRESET|FAIL|{}|{}|", SENTINEL, ut, ut_after);
260260
} else {
261261
log::info!("{}|ECRESET|PASS|{}|{}|", SENTINEL, ut, ut_after);

0 commit comments

Comments
 (0)