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

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