1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026194: Sometimes "testgrid" command runs every test many times

Added check for equal test directories in variable CSF_TestScriptsPath.
This commit is contained in:
apn 2015-05-07 11:31:24 +03:00 committed by abv
parent b767425413
commit 2124e769d1

View File

@ -278,7 +278,7 @@ proc testgrid {args} {
set tests_list {}
# iterate by all script paths
foreach dir [_split_path $env(CSF_TestScriptsPath)] {
foreach dir [lsort -unique [_split_path $env(CSF_TestScriptsPath)]] {
# protection against empty paths
set dir [string trim $dir]
if { $dir == "" } { continue }