diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-12 07:50:03 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-12 07:50:03 +0000 |
commit | a65255a06d7252614f0061823860568f4aefe1b7 (patch) | |
tree | f873ee2deaece227561151f2a738028b72b8676c /testing | |
parent | 173a43ff15e62ad8cb716e566ec718f9a6507ef6 (diff) | |
download | riscv-openocd-a65255a06d7252614f0061823860568f4aefe1b7.zip riscv-openocd-a65255a06d7252614f0061823860568f4aefe1b7.tar.gz riscv-openocd-a65255a06d7252614f0061823860568f4aefe1b7.tar.bz2 |
testing/*.tcl sample & test code
git-svn-id: svn://svn.berlios.de/openocd/trunk@798 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tcl_server.tcl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/tcl_server.tcl b/testing/tcl_server.tcl new file mode 100644 index 0000000..c5ec229 --- /dev/null +++ b/testing/tcl_server.tcl @@ -0,0 +1,15 @@ +# Simple tcl client to connect to openocd
+puts "Use empty line to exit"
+set fo [socket 127.0.0.1 6666]
+puts -nonewline stdout "> "
+flush stdout
+while {[gets stdin line] >= 0} {
+ if {$line eq {}} break
+ puts $fo $line
+ flush $fo
+ gets $fo line
+ puts $line
+ puts -nonewline stdout "> "
+ flush stdout
+}
+close $fo
|