History Of Ticket 64cdb76212

Artifacts Associated With Ticket 64cdb76212

  1. Ticket change [6fa1ec034e] (rid 1600) by doofus on 2023-11-20 02:43:51:

    1. foundin initialized to: "1.7.22"
    2. icomment:
      Even if _all_ tests were to fail, the script `all.tcl` would still exit with code 0...
      
      That breaks automation, because the caller does not know of any test-failures.
      
      The patch below addresses this problem:
      
      ```patch
      --- tests/all.tcl       2020-10-12 16:39:22.000000000 -0400
      +++ tests/all.tcl       2023-11-19 21:19:34.128221000 -0500
      @@ -55,5 +55,5 @@
       # cleanup
       puts stdout "\nTests ended at [eval $timeCmd]"
      +set failCount [llength $::tcltest::failFiles]
       ::tcltest::cleanupTests 1
      -return
      -
      +exit [expr $failCount > 0]
      ```
      
    3. login: "doofus"
    4. mimetype: "text/x-markdown"
    5. private_contact initialized to: "97c7e5a24584ec1fd28bf5cc453cd06585a9a915"
    6. severity initialized to: "Critical"
    7. status initialized to: "Open"
    8. title initialized to: "tests/all.tcl always succeeds"
    9. type initialized to: "Code Defect"
  2. Ticket change [3e38d50e19] (rid 1601) by doofus on 2023-11-20 02:45:02:

    1. login: "doofus"
    2. mimetype: "text/x-markdown"
    3. priority changed to: "Immediate"
    4. resolution changed to: "Open"
    5. severity changed to: "Important"