openocd/tcl/test/selftest.cfg
Marc Schink b27173d563 tcl: Remove executable bit
Change-Id: Ib452435b13c3cb8d14453d983151936238b9601d
Signed-off-by: Marc Schink <dev@zapb.de>
Reviewed-on: http://openocd.zylin.com/5419
Reviewed-by: Paul Fertser <fercerpav@gmail.com>
Tested-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
2020-02-08 23:27:18 +00:00

18 lines
413 B
INI

add_help_text selftest "run selftest using working ram <tmpfile> <address> <size>"
proc selftest {tmpfile address size} {
for {set i 0} {$i < $size } {set i [expr $i+4]} {
mww [expr $address+$i] $i
}
for {set i 0} {$i < 10 } {set i [expr $i+1]} {
echo "Test iteration $i"
dump_image $tmpfile $address $size
verify_image $tmpfile $address bin
load_image $tmpfile $address bin
}
}