Fix Rust test suite for 1.20 beta
authorTom Tromey <tom@tromey.com>
Sat, 5 Aug 2017 21:38:32 +0000 (15:38 -0600)
committerTom Tromey <tom@tromey.com>
Sat, 5 Aug 2017 21:38:32 +0000 (15:38 -0600)
I ran the gdb.rust tests against Rust 1.20 (beta) and saw a few
failures.  The failures all came because a particular item moved to a
different module.  Since the particular choice of module name isn't
important here, I simply widened the allowable results.

Tested locally against rustc 1.19, 1.20, and 1.21.

testsuite/ChangeLog
2017-08-05  Tom Tromey  <tom@tromey.com>

* gdb.rust/simple.exp: Allow String to appear in a different
namespace.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.rust/simple.exp

index 2a777a8dab4eb05a1617b3f5a5eebd3f2694c371..31f419faf5d5a81730acb7313095f483150665e3 100644 (file)
@@ -1,3 +1,8 @@
+2017-08-05  Tom Tromey  <tom@tromey.com>
+
+       * gdb.rust/simple.exp: Allow String to appear in a different
+       namespace.
+
 2017-07-26  Yao Qi  <yao.qi@linaro.org>
 
        * gdb.gdb/unittest.exp: Invoke command
index 83dab17022989dda5149e33a2244304787d11525..403a11b771eee68a0a3f594ffa43f873ebeceea7 100644 (file)
@@ -197,14 +197,14 @@ gdb_test "print 5.." " = .*::ops::RangeFrom.* \\{start: 5\\}"
 gdb_test "print .." " = .*::ops::RangeFull"
 
 gdb_test "print str_some" \
-    " = core::option::Option<collections::string::String>::Some\\(collections::string::String .*"
-gdb_test "print str_none" " = core::option::Option<collections::string::String>::None"
+    " = core::option::Option<\[a-z\]+::string::String>::Some\\(\[a-z\]+::string::String .*"
+gdb_test "print str_none" " = core::option::Option<\[a-z\]+::string::String>::None"
 gdb_test "print int_some" " = core::option::Option::Some\\(1\\)"
 gdb_test "print int_none" " = core::option::Option::None"
 gdb_test "print box_some" " = core::option::Option<\[a-z:\]*Box<u8>>::Some\\(.*\\)"
 gdb_test "print box_none" " = core::option::Option<\[a-z:\]*Box<u8>>::None"
 gdb_test "print custom_some" \
-    " = simple::NonZeroOptimized::Value\\(collections::string::String .*"
+    " = simple::NonZeroOptimized::Value\\(\[a-z\]+::string::String .*"
 gdb_test "print custom_none" " = simple::NonZeroOptimized::Empty"
 
 proc test_one_slice {svar length base range} {
This page took 0.039186 seconds and 4 git commands to generate.