| Index: src/scripts/build_autotest.sh
|
| diff --git a/src/scripts/build_autotest.sh b/src/scripts/build_autotest.sh
|
| index 5b929ac980adec5f218819b0b5aa1bb798570fd0..d96cd8e33361b32404679f321993a03b8c6c21dc 100755
|
| --- a/src/scripts/build_autotest.sh
|
| +++ b/src/scripts/build_autotest.sh
|
| @@ -52,7 +52,8 @@ do
|
| done
|
|
|
| # Load the overlay specific blacklist and remove any matching tests.
|
| -PRIMARY_BOARD_OVERLAY="${SRC_ROOT}/overlays/overlay-${FLAGS_board}"
|
| +BOARD_BASENAME=$(echo "${FLAGS_board}" |cut -d '_' -f 1)
|
| +PRIMARY_BOARD_OVERLAY="${SRC_ROOT}/overlays/overlay-${BOARD_BASENAME}"
|
| BLACKLIST_FILE="${PRIMARY_BOARD_OVERLAY}/autotest-blacklist"
|
| if [ -r "${BLACKLIST_FILE}" ]
|
| then
|
|
|