tool/run: fix 'interact' command invocation

Use the '-i' option to pass the spawn id to the 'interact' command.

Fixes #737.
This commit is contained in:
Christian Prochaska 2013-05-08 16:28:45 +02:00 committed by Norman Feske
parent ef4a4ea654
commit 33bb8662a0
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ proc wait_for_output { wait_for_re timeout_value running_spawn_id } {
if {$wait_for_re == "forever"} {
set timeout -1
interact $running_spawn_id
interact -i $running_spawn_id
} else {
set timeout $timeout_value
}