Tagged Questions

0
votes
0answers
3 views

dejagnu timeout question

I have two testing script written in dejagnu/expect. When I run any one of them, it is fine. However, when I just call runtest to run both of them. I always get a timeout failure f …
0
votes
0answers
5 views

Problem with expect script that deals with multiple processes

The expect script was meant to test a network server. In the script, the server was first started, and then client A and B are started with telnet command. Client A was started bef …
0
votes
1answer
14 views

default timeout handler for expect script

I have a expect script that need to fail when certain any of the expect condition is not meet. For example: expect "Hello World" If the expect script does not find "Hello World" …
-1
votes
1answer
76 views

How can I debug a Perl CGI script?

I inherited a legacy Perl script from an old server which is being removed. The script needs to be implemented on a new server. I've got it on the new server. The script is pret …
0
votes
1answer
32 views

Expect/TCL telnet proc does not wait for the prompt

Hello , I have a Expect proc that sends command for telnet login and send commands. Inside the telnet proc I do a TFTP . The size of the file is 10MB. But the telent prompt does …
3
votes
3answers
147 views

Installing java on linux using ssh

Hi I want to install java on many computers using ssh so I want to write a bash script that will do (roughly): for c in computers do scp jre--.rpm $c ssh $c 'sudu -s; c …
0
votes
3answers
295 views

Why does string match fails in this “expect” code?

I have created the following procedure in expect to work with an Agilent Base Station Simulator: proc get_bss_parameter_value {bss parameter_string} { global bss_array set bss_st …
0
votes
2answers
37 views

How to embed gcc and gcov command in expect script

Hi, I wanted to embed gcc and gcov command as part of expect script.. I tried as.. #!/usr/bin/expect -f send ":gcc -fprofile-arcs -ftest-coverage c.c\r" send ":gcov c.c\r" But …
0
votes
2answers
134 views

Conditional statament inside expect command called from a bash script

I've been trying to automate some configuration backups on my cisco devices, i've already managed to do the script that accomplishes the task but I'm trying to improve it to handle …
0
votes
2answers
49 views

Expect argument handling

I'd like to create an expect script that connects to the server via telnet and does some authorisation. I have a problem with using script parameters though. Based on man I expecte …
2
votes
1answer
92 views

How can I send arrow key presses to a process using Expect.pm

Hi all: Seems like this should be obvious, but how do I send arrow key presses to a process using Expect.pm? Does it depend on the terminal type I am using (vt100) or do I send k …
0
votes
1answer
44 views

spawn process in win XP

Hello All I am trying to create a automated ftp log in script in Expect/TCL. This is my script spawn ftp 100.100.100.1 expect ".*:" send "username" expect ".*:" …
1
vote
3answers
154 views

Using conditional statements inside ‘expect’

I need to automate logging into a TELNET session using expect, but I need to take care of multiple passwords for the same username. Here's the flow I need to create: Open TELNET …
0
votes
2answers
88 views

Tcl Serial Port fconfigure portability issue

Hi all, I've got a Tcl/Expect program that reads and writes data to the serial port. I did all of my development and testing on a Fedora 7 machine, but I'm now trying to run the s …
0
votes
4answers
296 views

Using ‘expect’ to automatically send in password

I am trying to copy a file from my remote server to my local. Here's my script to run it, by using 'expect' to automaticlally send in password scp user@host:/folder/myFile ./ expe …

1 2 3 next
15 30 50 per page