mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-07 13:39:43 +08:00
Fix py-parameter.exp and scm-parameter.exp path matching
gdb/testsuite/ChangeLog: * gdb.python/py-parameter.exp: * gdb.guile/scm-parameter.exp: Escape the path that we are matching against, as it might contain characters that are special to regular expressions.
This commit is contained in:
parent
faa2211d4d
commit
2631b16a57
@ -1,3 +1,10 @@
|
||||
2015-04-28 Andy Wingo <wingo@igalia.com>
|
||||
|
||||
* gdb.python/py-parameter.exp:
|
||||
* gdb.guile/scm-parameter.exp: Escape the path that we are
|
||||
matching against, as it might contain characters that are special
|
||||
to regular expressions.
|
||||
|
||||
2015-04-27 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* gdb.ada/rec_comp: New testcase.
|
||||
|
@ -30,7 +30,8 @@ gdb_install_guile_utils
|
||||
gdb_install_guile_module
|
||||
|
||||
# We use "." here instead of ":" so that this works on win32 too.
|
||||
gdb_test "guile (print (parameter-value \"directories\"))" "$srcdir/$subdir.\\\$cdir.\\\$cwd"
|
||||
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.
|
||||
|
||||
|
@ -32,7 +32,8 @@ if { [is_remote host] } {
|
||||
# doesn't set search directories on remote host.
|
||||
set directories ".*\\\$cdir.\\\$cwd"
|
||||
} else {
|
||||
set directories "$srcdir/$subdir.\\\$cdir.\\\$cwd"
|
||||
set escaped_directory [string_to_regexp "$srcdir/$subdir"]
|
||||
set directories "$escaped_directory.\\\$cdir.\\\$cwd"
|
||||
}
|
||||
gdb_test "python print (gdb.parameter ('directories'))" $directories
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user