summaryrefslogtreecommitdiff
path: root/test/integration/targets/include_when_parent_is_static/runme.sh
blob: 33728bdf02330f6713ee4e8709e45b4a18fd822a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -eu

ansible-playbook playbook.yml "$@" > output.log 2>&1 || true

if grep "intentional syntax error" output.log >/dev/null; then
  echo "Test passed (playbook failed with expected output, output not shown)."
  exit 0
fi

cat output.log
exit 1