Skip to content

Commit

Permalink
Fix GCC target tests execution (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackhex authored Aug 22, 2024
1 parent a2ef14a commit ce1dfdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source `dirname ${BASH_SOURCE[0]}`/config.sh

echo "::group::Install Dependencies"
sudo apt update
sudo apt install -y build-essential autoconf automake autotools-dev binutils-for-build texinfo bison flex ccache docbook2x xmlto zlib1g-dev libc6-dev-arm64-cross libc6-dev-amd64-cross dejagnu
sudo apt install -y build-essential autogen autoconf automake autotools-dev binutils-for-build texinfo bison flex ccache docbook2x xmlto zlib1g-dev libc6-dev-arm64-cross libc6-dev-amd64-cross dejagnu
echo "::endgroup::"

echo 'Success!'
4 changes: 2 additions & 2 deletions .github/scripts/toolchain/execute-gcc-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ echo "::group::Execute GCC tests"
MAKE_TARGET="check-$MODULE"
fi
if [[ -n "$TARGET_BOARD" ]]; then
TARGET_BOARD="--target-board $TARGET_BOARD"
TARGET_BOARD="--target_board=$TARGET_BOARD"
fi
if [[ -n "$HOST_BOARD" ]]; then
HOST_BOARD="--host-board $HOST_BOARD"
HOST_BOARD="--host_board=$HOST_BOARD"
fi
make $BUILD_MAKE_OPTIONS -k $MAKE_TARGET \
RUNTESTFLAGS="$FILTER $HOST_BOARD $TARGET_BOARD" \
Expand Down

0 comments on commit ce1dfdd

Please sign in to comment.