Commit 36bbfeef authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo
Browse files

Merge pull request #1824 from mattsta/fix-test-error-signal

Add correct exit value to failed tests
parents 3f8865bc f7d98273
...@@ -22,4 +22,5 @@ proc main {} { ...@@ -22,4 +22,5 @@ proc main {} {
if {[catch main e]} { if {[catch main e]} {
puts $::errorInfo puts $::errorInfo
cleanup cleanup
exit 1
} }
...@@ -18,4 +18,5 @@ proc main {} { ...@@ -18,4 +18,5 @@ proc main {} {
if {[catch main e]} { if {[catch main e]} {
puts $::errorInfo puts $::errorInfo
cleanup cleanup
exit 1
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment