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

Adjusting testing case for current state of OCCT

This commit is contained in:
kgv 2013-04-15 11:56:29 +04:00
parent 7cc2d520c2
commit 0c4ca3bd7b

View File

@ -44,9 +44,9 @@ if { [file exists ${aFile}] } {
puts "Export to TEX file was done" puts "Export to TEX file was done"
set filesize [file size ${aFile}] set filesize [file size ${aFile}]
puts "Size of TEX file = $filesize" puts "Size of TEX file = $filesize"
if { $filesize >= 1500 } { if { $filesize > 1500 } {
puts "Faulty : Export to TEX file was done but size of file is incorrect" puts "Faulty : Export to TEX file was done but size of file is incorrect"
} }
} else { } else {
puts "Faulty : Export to TEX file was not done" puts "Faulty : Export to TEX file was not done"
} }