diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2010-11-08 17:23:49 +0800 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-11-09 08:12:51 +0100 |
commit | e7b2958229c7e0d7e98e130764aa50d1ca9017d3 (patch) | |
tree | 93503ebca6e20ffe9ca968680b834ab75d809224 /tcl/test | |
parent | 4747af362de04b508c91df4004d2aed5579c8a1c (diff) | |
download | riscv-openocd-e7b2958229c7e0d7e98e130764aa50d1ca9017d3.zip riscv-openocd-e7b2958229c7e0d7e98e130764aa50d1ca9017d3.tar.gz riscv-openocd-e7b2958229c7e0d7e98e130764aa50d1ca9017d3.tar.bz2 |
TCL scripts: replace "puts" with "echo"
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'tcl/test')
-rwxr-xr-x | tcl/test/selftest.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl/test/selftest.cfg b/tcl/test/selftest.cfg index 912d1c0..be420ca 100755 --- a/tcl/test/selftest.cfg +++ b/tcl/test/selftest.cfg @@ -8,7 +8,7 @@ proc selftest {tmpfile address size} { } for {set i 0} {$i < 10 } {set i [expr $i+1]} { - puts "Test iteration $i" + echo "Test iteration $i" dump_image $tmpfile $address $size verify_image $tmpfile $address bin load_image $tmpfile $address bin |