Rewrite version_compare and rust_at_least
authorTom Tromey <tromey@adacore.com>
Tue, 14 Mar 2023 13:51:45 +0000 (07:51 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 29 Mar 2023 16:13:12 +0000 (10:13 -0600)
This rewrites version_compare to allow the input lists to have
different lengths, then rewrites rust_at_least to use version_compare.

gdb/testsuite/lib/gdb-utils.exp
gdb/testsuite/lib/rust-support.exp

index fb5c953a6c436b25c6e80f383a8f8f73e4ed59c8..a010e14fc04fd94d5bd0d12c36e8718bdc8c8e25 100644 (file)
@@ -101,49 +101,40 @@ proc gdb_get_bp_addr { num } {
     return ""
 }
 
-# Compare the version numbers in L1 to those in L2 using OP, and return
-# 1 if the comparison is true.
+# Compare the version numbers in L1 to those in L2 using OP, and
+# return 1 if the comparison is true.  OP can be "<", "<=", or "==".
+# It is ok if the lengths of the lists differ.
 
 proc version_compare { l1 op l2 } {
-    set len [llength $l1]
-    if { $len != [llength $l2] } {
-       error "l2 not the same length as l1"
-    }
-
     switch -exact $op {
        "=="    -
+       "<="    -
        "<"     {}
-       "<="    { return [expr [version_compare $l1 < $l2] \
-                             || [version_compare $l1 == $l2]]}
        default { error "unsupported op: $op" }
     }
 
     # Handle ops < and ==.
-    set idx 0
-    foreach v1 $l1 {
-       set v2 [lindex $l2 $idx]
-       incr idx
-       set last [expr $len == $idx]
-
-       set cmp [expr $v1 $op $v2]
-       if { $op == "==" } {
-           if { $cmp } {
-               continue
-           } else {
-               return 0
-           }
-       } else {
-           # $op == "<".
-           if { $cmp } {
+    foreach v1 $l1 v2 $l2 {
+       if {$v1 == ""} {
+           # This is: "1.2 OP 1.2.1".
+           if {$op != "=="} {
                return 1
-           } else {
-               if { !$last && $v1 == $v2 } {
-                   continue
-               }
-               return 0
            }
+           return 0
        }
+       if {$v2 == ""} {
+           # This is: "1.2.1 OP 1.2".
+           return 0
+       }
+       if {$v1 == $v2} {
+           continue
+       }
+       return [expr $v1 $op $v2]
     }
 
+    if {$op == "<"} {
+       # They are equal.
+       return 0
+    }
     return 1
 }
index 381871e22f4f1b13f231c9edbd18959a25cfb90a..e9a3c5c0543e76879247cb26fd7ecde8a5fa57fb 100644 (file)
@@ -116,24 +116,6 @@ gdb_caching_proc rust_compiler_version {} {
 # 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
+    return [version_compare  [split $atleast .] \
+               <= [split [rust_compiler_version] .]]
 }