diff options
author | dgp <dgp@users.sourceforge.net> | 2016-07-02 17:55:51 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-07-02 17:55:51 (GMT) |
commit | 40f7c9d9a4db96328d9933e0675ece7362bffc1c (patch) | |
tree | 940976c9f4a8f333051996ab37ac619e66a77c80 /library/tcltest | |
parent | a139661621ec842c91242c4b0fca910b9c964398 (diff) | |
download | tcl-40f7c9d9a4db96328d9933e0675ece7362bffc1c.zip tcl-40f7c9d9a4db96328d9933e0675ece7362bffc1c.tar.gz tcl-40f7c9d9a4db96328d9933e0675ece7362bffc1c.tar.bz2 |
[09fabeb1fd] test subdirs in sorted order.
Diffstat (limited to 'library/tcltest')
-rw-r--r-- | library/tcltest/tcltest.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 169b7d4..f1ce970 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -2709,7 +2709,7 @@ proc tcltest::GetMatchingDirectories {rootdir} { DebugPuts 1 "No test directories remain after applying match\ and skip patterns!" } - return $matchDirs + return [lsort $matchDirs] } # tcltest::runAllTests -- |