Skip to content

Commit

Permalink
Remove obsolete if statement from all.sh
Browse files Browse the repository at this point in the history
This commit removes an obsolete if statement from all.sh which would set
the FRAMEWORK path accordingly. Since TF-PSA-Crypto has its own version
of FRAMEWORk this code was no longer necessary

Signed-off-by: Harry Ramsey <[email protected]>
  • Loading branch information
Harry-Ramsey committed Jan 6, 2025
1 parent 0568ab1 commit 30120e3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/scripts/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@ if [ -d tf-psa-crypto -a -d include/mbedtls ]; then
exit 255
fi

if [ -d ../include/mbedtls -a -d ../framework ]; then
# Running inside an mbedtls checkout: get the framework from mbedtls.
FRAMEWORK="$PWD/../framework"
else
# Running standalone: use our own framework.
FRAMEWORK="$PWD/framework"
fi
FRAMEWORK="$PWD/framework"

source $FRAMEWORK/scripts/all-core.sh

Expand Down

0 comments on commit 30120e3

Please sign in to comment.