diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-03-28 18:19:41 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-03-28 18:19:41 +0000 |
commit | 897c7412b26ca618af6822dcaa7e6be68772dc52 (patch) | |
tree | abad115d8ebf3bf901361994242a8a3276648435 /xtests | |
parent | ca51775485e303d79ec4ad7a00e764807daebc29 (diff) | |
download | pam-897c7412b26ca618af6822dcaa7e6be68772dc52.tar.gz pam-897c7412b26ca618af6822dcaa7e6be68772dc52.tar.bz2 pam-897c7412b26ca618af6822dcaa7e6be68772dc52.zip |
Fix various typos found using codespell tool
Diffstat (limited to 'xtests')
-rwxr-xr-x | xtests/run-xtests.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xtests/run-xtests.sh b/xtests/run-xtests.sh index 1cf8684b..14f585d9 100755 --- a/xtests/run-xtests.sh +++ b/xtests/run-xtests.sh @@ -13,7 +13,7 @@ XTESTS="$@" failed=0 pass=0 -skiped=0 +skipped=0 all=0 mkdir -p /etc/security @@ -36,7 +36,7 @@ for testname in $XTESTS ; do RETVAL=$? if test $RETVAL -eq 77 ; then echo "SKIP: $testname" - skiped=`expr $skiped + 1` + skipped=`expr $skipped + 1` elif test $RETVAL -ne 0 ; then echo "FAIL: $testname" failed=`expr $failed + 1` @@ -55,13 +55,13 @@ mv /etc/security/opasswd-pam-xtests /etc/security/opasswd if test "$failed" -ne 0; then echo "===================" echo "$failed of $all tests failed" - echo "$skiped tests not run" + echo "$skipped tests not run" echo "===================" exit 1 else echo "==================" echo "$all tests passed" - echo "$skiped tests not run" + echo "$skipped tests not run" echo "==================" fi exit 0 |