what does test -x from /etc/cron.daily/logrotate do?
test -x
test -x /usr/sbin/logrotate || exit 0 /usr/sbin/logrotate /etc/logrotate.conf
test -x /path/to/file
It checks if file exists and is executable by current user
file