mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
ctdb-tests: Check for readable, not executable, script
Scripts in eventscript unit tests are run under an explicitly specified shell so they do not need to be executable. Checking that the script is executable breaks on scripts that are installed without the execute bit set, such as disabled eventscripts. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Amitay Isaacs <amitay@samba.org> Autobuild-Date(master): Fri Mar 6 04:40:07 CET 2015 on sn-devel-104
This commit is contained in:
parent
bccf5c9a7b
commit
f6efe0c5c2
@ -1099,7 +1099,7 @@ define_test ()
|
||||
script_dir="${CTDB_BASE}"
|
||||
esac
|
||||
|
||||
[ -x "${script_dir}/${script}" ] || \
|
||||
[ -r "${script_dir}/${script}" ] || \
|
||||
die "Internal error - unable to find script \"${script_dir}/${script}\""
|
||||
|
||||
printf "%-17s %-10s %-4s - %s\n\n" "$script" "$event" "$_num" "$desc"
|
||||
|
Loading…
Reference in New Issue
Block a user