From ed5b0e3790c4e81c235f9fe4cafcf0294cb0b761 Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Thu, 2 Jul 2026 12:33:02 +0200 Subject: [PATCH] Fix sharding in hwci --- scripts/hwci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/hwci.sh b/scripts/hwci.sh index 143771f3b..803c7af1d 100755 --- a/scripts/hwci.sh +++ b/scripts/hwci.sh @@ -40,7 +40,6 @@ run() { local name name_flags feature features local runner_specific runner_feature runner_default shift 2 - shard_init $SHARDING for name in $(list); do shard_next || continue runner_specific=n @@ -71,7 +70,6 @@ run() { fi done done - shard_done } # @@ -95,6 +93,7 @@ full() { trap - EXIT } +shard_init $SHARDING case $1 in host) FLASH_ARGS=--protocol=unix full unix host ;; # P1.01, P1.02, and P1.03 must be connected together (gpio_test). @@ -102,3 +101,4 @@ case $1 in opentitan) full usb opentitan --features=test-vendor ;; *) run --protocol=${1:-usb} "$2" ;; esac +shard_done