mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
FILENAME=../docsite/rst/dev_guide/testing/sanity/index.rst
|
|
|
|
cat <<- EOF >$FILENAME.new
|
|
.. _all_sanity_tests:
|
|
|
|
Sanity Tests
|
|
============
|
|
|
|
The following sanity tests are available as \`\`--test\`\` options for \`\`ansible-test sanity\`\`.
|
|
This list is also available using \`\`ansible-test sanity --list-tests --allow-disabled\`\`.
|
|
|
|
For information on how to run these tests, see :ref:\`sanity testing guide <testing_sanity>\`.
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
|
|
$(for test in $(../../bin/ansible-test sanity --list-tests --allow-disabled); do echo " ${test}"; done)
|
|
|
|
EOF
|
|
|
|
# By default use sha1sum which exists on Linux, if not present select the correct binary
|
|
# based on platform defaults
|
|
SHA_CMD="sha1sum"
|
|
if ! which ${SHA_CMD} > /dev/null 2>&1; then
|
|
if which sha1 > /dev/null 2>&1; then
|
|
SHA_CMD="sha1"
|
|
elif which shasum > /dev/null 2>&1; then
|
|
SHA_CMD="shasum"
|
|
else
|
|
# exit early with an error if no hashing binary can be found since it is required later
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Put file into place if it has changed
|
|
if [ "$(${SHA_CMD} <$FILENAME)" != "$(${SHA_CMD} <$FILENAME.new)" ]; then
|
|
mv -f $FILENAME.new $FILENAME
|
|
fi
|