diff options
author | Pedro Alves <palves@redhat.com> | 2010-02-17 23:07:24 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-02-17 23:07:24 +0000 |
commit | 061b528517208800e3f1adc721c40421fc360f37 (patch) | |
tree | d3fd703b1a6517df5890dff8d2dce70bb587343f | |
parent | 51e139990ee36293871e2d3080c4163098cb0201 (diff) | |
download | binutils-gdb-061b528517208800e3f1adc721c40421fc360f37.tar.gz |
* lib/gdb.exp (build_id_debug_filename_get): Don't assume new
`regsub' syntax available.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e2594c69735..518118ce5d1 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2010-02-17 Pedro Alves <pedro@codesourcery.com> + * lib/gdb.exp (build_id_debug_filename_get): Don't assume new + `regsub' syntax available. + +2010-02-17 Pedro Alves <pedro@codesourcery.com> + * gdb.base/shmain.c (main): Remove printf call. * gdb.base/sizeof.c (main): Cast return of sizeof to int. * gdb.base/unload.c (main): Make format of fprintf a string diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index a42d5517f60..627941d6d1e 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -2830,7 +2830,7 @@ proc build_id_debug_filename_get { exec } { } # Convert it to hex. binary scan $data H* data - set data [regsub {^..} $data {\0/}] + regsub {^..} $data {\0/} data return ".build-id/${data}.debug"; } |