[gdb/testsuite] Fix /gdb.guile/scm-parameter.exp for remote host
Fix test-case gdb.guile/scm-parameter.exp for remote host by taking into account that gdb_reinitialize_dir has no effect for remote host. Tested on x86_64-linux.
This commit is contained in:
parent
7eb59fa256
commit
5fc60431a8
@ -34,8 +34,15 @@ proc scm_param_test_maybe_no_output { command pattern args } {
|
||||
}
|
||||
|
||||
# We use "." here instead of ":" so that this works on win32 too.
|
||||
set escaped_directory [string_to_regexp "$srcdir/$subdir"]
|
||||
gdb_test "guile (print (parameter-value \"directories\"))" "$escaped_directory.\\\$cdir.\\\$cwd"
|
||||
if { [is_remote host] } {
|
||||
# Proc gdb_reinitialize_dir has no effect for remote host.
|
||||
gdb_test "guile (print (parameter-value \"directories\"))" \
|
||||
"\\\$cdir.\\\$cwd"
|
||||
} else {
|
||||
set escaped_directory [string_to_regexp "$srcdir/$subdir"]
|
||||
gdb_test "guile (print (parameter-value \"directories\"))" \
|
||||
"$escaped_directory.\\\$cdir.\\\$cwd"
|
||||
}
|
||||
|
||||
# Test a simple boolean parameter, and parameter? while we're at it.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user