Skip to content

Commit

Permalink
Update test.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaby76 committed Oct 6, 2024
1 parent 145e160 commit 94f6ad9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion _tests/all-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ echo Tests in Trash: $tests
failed=()
for i in $tests
do
bash $i
dir=`dirname $i`
fn=`basename $i`
pushd $dir
bash $fn
result=$?
if [ "$result" != 0 ]
then
echo Failed $i
failed+=( $i )
fi
popd
done
if (( ${#failed[@]} != 0 ))
then
Expand Down

0 comments on commit 94f6ad9

Please sign in to comment.