aboutsummaryrefslogtreecommitdiff
path: root/config/unix.exp
diff options
context:
space:
mode:
Diffstat (limited to 'config/unix.exp')
-rw-r--r--config/unix.exp8
1 files changed, 7 insertions, 1 deletions
diff --git a/config/unix.exp b/config/unix.exp
index 5320ab7..0bb4d83 100644
--- a/config/unix.exp
+++ b/config/unix.exp
@@ -38,9 +38,14 @@ proc make_absolute {pathname} {
proc unix_load { dest prog args } {
global ld_library_path
+ global test_timeout
set output ""
set orig_ld_library_path ""
+ if {![info exists test_timeout]} {
+ set test_timeout 300
+ }
+
if { [llength $args] > 0 } {
set parg [lindex $args 0]
} else {
@@ -75,13 +80,14 @@ proc unix_load { dest prog args } {
setenv LD_LIBRARY_PATH "$ld_library_path:$orig_ld_library_path"
setenv SHLIB_PATH "$ld_library_path:$orig_ld_library_path"
verbose -log "Setting LD_LIBRARY_PATH to $ld_library_path:$orig_ld_library_path" 2
+ verbose -log "Execution timeout is: $test_timeout" 2
set id [remote_spawn $dest "$command" "readonly"]
if { $id < 0 } {
set output "remote_spawn failed"
set status -1
} else {
- set status [remote_wait $dest 300]
+ set status [remote_wait $dest $test_timeout]
set output [lindex $status 1]
set status [lindex $status 0]
}