diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-23 11:14:13 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-23 11:14:13 (GMT) |
commit | 983b95bdbd0cb4e1e9a58f482ab46ad7d5617abe (patch) | |
tree | 29a820f3e12597f1365673e6bbfb6845d4c6a51e /library/tcltest/tcltest.tcl | |
parent | e0209e39ea32294ee016d240fd1dfe9411469832 (diff) | |
parent | c201290179fd33b699c27e7ed181281c18a8fa06 (diff) | |
download | tcl-983b95bdbd0cb4e1e9a58f482ab46ad7d5617abe.zip tcl-983b95bdbd0cb4e1e9a58f482ab46ad7d5617abe.tar.gz tcl-983b95bdbd0cb4e1e9a58f482ab46ad7d5617abe.tar.bz2 |
Enable CI builds with Travis.
Diffstat (limited to 'library/tcltest/tcltest.tcl')
-rw-r--r-- | library/tcltest/tcltest.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 936acaa..f69ffd2 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -2700,7 +2700,7 @@ proc tcltest::GetMatchingDirectories {rootdir} { # shell being tested # # Results: -# None. +# Whether there were any failures. # # Side effects: # None. @@ -2846,7 +2846,7 @@ proc tcltest::runAllTests { {shell ""} } { puts [outputChannel] "" puts [outputChannel] [string repeat ~ 44] } - return + return [info exists testFileFailures] } ##################################################################### |