mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
12 lines
305 B
Bash
12 lines
305 B
Bash
#!../bash
|
|
#$Id: run-set-x,v 1.1 2002/12/09 13:12:37 rockyb Exp $
|
|
|
|
TEST_NAME='set-x'
|
|
TEST_FILE="${BASH_TSTOUT}"
|
|
${THIS_SH} ./${TEST_NAME}.tests > $TEST_FILE 2>&1 < /dev/null
|
|
set -f
|
|
diff $TEST_FILE ${TEST_NAME}.right && rm -f $TEST_FILE
|
|
|
|
# Return code tells testing mechanism whether passed or not.
|
|
exit $?
|