Introduce rust_at_least helper proc
authorTom Tromey <tromey@adacore.com>
Mon, 27 Feb 2023 20:23:35 +0000 (13:23 -0700)
committerTom Tromey <tromey@adacore.com>
Wed, 29 Mar 2023 16:13:12 +0000 (10:13 -0600)
This adds a 'rust_at_least' helper proc, for checking the version of
the Rust compiler in use.  It then changes various tests to use this
with 'require'.

gdb/testsuite/gdb.rust/rawids.exp
gdb/testsuite/gdb.rust/unicode.exp
gdb/testsuite/gdb.rust/unsized.exp
gdb/testsuite/lib/rust-support.exp

index 56d1e5f64b3eeb110033001c2afbe360cc23e447..55e1b7ffbdd12f99e21649e17253727d4e57a981 100644 (file)
 load_lib rust-support.exp
 require allow_rust_tests
 require {can_compile rust}
-
-set v [split [rust_compiler_version] .]
-if {[lindex $v 0] == 1 && [lindex $v 1] < 30} {
-    untested "raw identifiers require rust 1.30 or greater"
-    return -1
-}
+require {rust_at_least 1.30}
 
 standard_testfile .rs
 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug rust}]} {
index 7124934c8d5343657a07c60bc5524a267d830c9b..97b37af316aefb40f76be99125e141c5df0c0a80 100644 (file)
@@ -20,11 +20,7 @@ require allow_rust_tests
 require {can_compile rust}
 
 # Non-ASCII identifiers were allowed starting in 1.53.
-set v [split [rust_compiler_version] .]
-if {[lindex $v 0] == 1 && [lindex $v 1] < 53} {
-    untested "this test requires rust 1.53 or greater"
-    return -1
-}
+require {rust_at_least 1.53}
 
 # Enable basic use of UTF-8.  LC_ALL gets reset for each testfile.
 setenv LC_ALL C.UTF-8
index a12d8f0bac4abacead1270bff1ae5a1eb8950a00..f6d39dd62480bb49ad3e330d5de884836235b19d 100644 (file)
@@ -32,10 +32,7 @@ if {![runto ${srcfile}:$line]} {
 
 gdb_test "ptype us" " = .*V<\\\[u8\\\]>.*"
 
-set v [split [rust_compiler_version] .]
-# The necessary debuginfo generation landed in 1.60, but had a bug
-# that was fixed in 1.61.
-if {[lindex $v 0] > 1 || [lindex $v 1] >= 61} {
+if {[rust_at_least 1.61]} {
     gdb_test "print us2" " = .*Box<.*> \\\[1, 2, 3\\\]"
     gdb_test "ptype us2" "type = .*"
 }
index f3739e2ce02893b54ce9d5e35db37e9cff14cfbb..381871e22f4f1b13f231c9edbd18959a25cfb90a 100644 (file)
@@ -112,3 +112,28 @@ gdb_caching_proc rust_compiler_version {} {
     }
     return 0.0
 }
+
+# A helper that checks that the rust compiler is at least the given
+# version.  This is handy for use with 'require'.
+proc rust_at_least {atleast} {
+    foreach n1 [split [rust_compiler_version] .] n2 [split $atleast .] {
+       if {$n1 == ""} {
+           # Have 1.2, wanted 1.2.1.
+           return 0
+       }
+       if {$n2 == ""} {
+           # Have 1.2.1, wanted 1.2.
+           return 1
+       }
+       if {$n1 > $n2} {
+           # Have 1.3, wanted 1.2.
+           return 1
+       }
+       if {$n1 < $n2} {
+           # Have 1.1, wanted 1.2.
+           return 0
+       }
+    }
+    # Completely equal.
+    return 1
+}