summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/execution/set-x1.0
blob: e498a3f2eaa8df182896e1ff3a31a66505cfc567 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: head/bin/sh/tests/execution/set-x1.0 222882 2011-06-08 21:58:19Z jilles $

key='must_contain_this'
{ r=`set -x; { : "$key"; } 2>&1 >/dev/null`; } 2>/dev/null
case $r in
*"$key"*) true ;;
*) false ;;
esac