mirror of
https://github.com/dgibson/dtc.git
synced 2025-12-07 05:35:07 -05:00
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:
parent
53d6ca639d
commit
9a50d82c4e
3 changed files with 3 additions and 3 deletions
|
|
@ -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="$?"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
LOG="tmp.log.$$"
|
||||
EXPECT="tmp.expect.$$"
|
||||
|
||||
rm -f $TMPFILE $LOG
|
||||
rm -f $LOG
|
||||
|
||||
expect="$1"
|
||||
echo "$expect" >$EXPECT
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
LOG="tmp.log.$$"
|
||||
EXPECT="tmp.expect.$$"
|
||||
|
||||
rm -f $TMPFILE $LOG
|
||||
rm -f $LOG
|
||||
|
||||
expect="$1"
|
||||
echo "$expect" >$EXPECT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue