]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/testsuite] Fix /gdb.guile/scm-parameter.exp for remote host
authorTom de Vries <tdevries@suse.de>
Wed, 29 Mar 2023 06:01:42 +0000 (08:01 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 29 Mar 2023 06:01:42 +0000 (08:01 +0200)
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.

gdb/testsuite/gdb.guile/scm-parameter.exp

index 2e9d9ed9a5d42f4a270b8ecfcbc91832ab23c89f..e2f82a1e7387aa096be5f24a43c134e5975fbaf4 100644 (file)
@@ -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.