diff options
author | Tom Tromey <tom@tromey.com> | 2017-05-18 17:31:41 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-05-18 17:40:29 -0600 |
commit | ec8df23454873916c6b6b918967af631b268acd8 (patch) | |
tree | 7f4d8f362e9000b101fbdfb8ee881078f9a223c0 /gdb/testsuite/ChangeLog | |
parent | 3e3e7faebe89bfab0d245040b19fd7347d186065 (diff) | |
download | gdb-ec8df23454873916c6b6b918967af631b268acd8.zip gdb-ec8df23454873916c6b6b918967af631b268acd8.tar.gz gdb-ec8df23454873916c6b6b918967af631b268acd8.tar.bz2 |
Fix test failure with Rust 1.18 and 1.19
With Rust 1.18 and 1.19, I saw some test suite failures. They were
all of the same form -- Box seems to be qualified in the output now,
like:
print box_some
$64 = core::option::Option<alloc::boxed::Box<u8>>::Some(0x7ffff6c21018 "\001\000")
... where the test was expecting Option<Box<u8>>.
This patch fixes the problem in a way that should work with earlier
versions of Rust.
gdb/testsuite/ChangeLog
2017-05-18 Tom Tromey <tom@tromey.com>
* gdb.rust/simple.exp: Allow Box to be qualified.
Diffstat (limited to 'gdb/testsuite/ChangeLog')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 40df91e..a3a75bc 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2017-05-18 Tom Tromey <tom@tromey.com> + + * gdb.rust/simple.exp: Allow Box to be qualified. + 2017-05-18 Thomas Preud'homme <thomas.preudhomme@arm.com> * gdb.base/float.exp: Expect GDB prompt for targets without FPU. |