-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* increase timeouts in all expect scripts with additional time added to the last exect script component.exp, which runs extra slow on github ubuntu.
- Loading branch information
Showing
3 changed files
with
12 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
set timeout 120 | ||
set timeout 180 | ||
spawn fprime-util new --component | ||
expect "Component name (MyComponent):" | ||
send -- "MyComponent\r" | ||
expect "Select component kind" | ||
send -- "1\r" | ||
expect "Enable Commands?" | ||
send -- "1\r" | ||
expect "Enable Telemetry?" | ||
send -- "1\r" | ||
expect "Enable Parameters?" | ||
send -- "1\r" | ||
expect "Add MyComponent to" | ||
send -- "yes\r" | ||
expect eof | ||
expect { | ||
"Component name (MyComponent):" {send -- "MyComponent\r" ; exp_continue} | ||
"Select component kind" {"1\r" ; exp_continue} | ||
"Enable Commands?" {"1\r" ; exp_continue} | ||
"Enable Telemetry?" {"1\r" ; exp_continue} | ||
"Enable Parameters?" {"1\r" ; exp_continue} | ||
"Add MyComponent to" {"yes\r" ; exp_continue} | ||
eof | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters