Remove unused variable from test scripts

Several of the test scripts remove $TMPFILE, without ever having set
the TMPFILE variable. This patch fixes it.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson
2012-02-03 16:12:03 +11:00
committed by Jon Loeliger
parent 53d6ca639d
commit 9a50d82c4e
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ done
LOG="tmp.log.$$"
rm -f $TMPFILE $LOG
rm -f $LOG
verbose_run_log "$LOG" $VALGRIND "$DTC" -o /dev/null "$@"
ret="$?"

View File

@@ -5,7 +5,7 @@
LOG="tmp.log.$$"
EXPECT="tmp.expect.$$"
rm -f $TMPFILE $LOG
rm -f $LOG
expect="$1"
echo "$expect" >$EXPECT

View File

@@ -11,7 +11,7 @@
LOG="tmp.log.$$"
EXPECT="tmp.expect.$$"
rm -f $TMPFILE $LOG
rm -f $LOG
expect="$1"
echo "$expect" >$EXPECT