diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2006-10-02 16:38:26 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2006-10-02 16:38:26 +0000 |
commit | 041bf30db7ac5628b79e7c44fcc53a7657061a89 (patch) | |
tree | 9ec20708b06fa56cf4bbba055252ba3b0f1f01be /gdb | |
parent | 466b1d33082997a5a2f267897b435364cde0131c (diff) | |
download | fsf-binutils-gdb-041bf30db7ac5628b79e7c44fcc53a7657061a89.zip fsf-binutils-gdb-041bf30db7ac5628b79e7c44fcc53a7657061a89.tar.gz fsf-binutils-gdb-041bf30db7ac5628b79e7c44fcc53a7657061a89.tar.bz2 |
* gdb.mi/mi-basics.exp (test_path_specification): Pass orig_path
via string_to_regexp.
* gdb.mi/mi2-basics.exp: Likewise.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.mi/mi-basics.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.mi/mi2-basics.exp | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 319cc01..1c2d6f3 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-10-02 Vladimir Prus <vladimir@codesourcery.com> + + * gdb.mi/mi-basics.exp (test_path_specification): Pass orig_path + via string_to_regexp. + * gdb.mi/mi2-basics.exp: Likewise. + 2006-09-20 Michael Snyder <michael.snyder@palmsource.com> * abug.exp, cpu32bug.exp, est.exp hmsirom.exp, nind.exp: diff --git a/gdb/testsuite/gdb.mi/mi-basics.exp b/gdb/testsuite/gdb.mi/mi-basics.exp index 9a6bdc8..bd24513 100644 --- a/gdb/testsuite/gdb.mi/mi-basics.exp +++ b/gdb/testsuite/gdb.mi/mi-basics.exp @@ -219,6 +219,8 @@ proc test_path_specification {} { } } + set orig_path [string_to_regexp ${orig_path}] + mi_gdb_test "207-environment-path" \ "207\\\^done,path=\"$orig_path\"" \ "environment-path no-args operation" diff --git a/gdb/testsuite/gdb.mi/mi2-basics.exp b/gdb/testsuite/gdb.mi/mi2-basics.exp index c3a6692..21db56d 100644 --- a/gdb/testsuite/gdb.mi/mi2-basics.exp +++ b/gdb/testsuite/gdb.mi/mi2-basics.exp @@ -222,6 +222,8 @@ proc test_path_specification {} { } } + set orig_path [string_to_regexp ${orig_path}] + mi_gdb_test "207-environment-path" \ "207\\\^done,path=\"$orig_path\"" \ "environment-path no-args operation" |