summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/execution/set-x3.0
blob: 29a917ee8c55a703d689f613fb5283a7864aca04 (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: head/bin/sh/tests/execution/set-x3.0 222907 2011-06-09 23:12:23Z jilles $

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