1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +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"
set filesize [file size ${aFile}]
puts "Size of TEX file = $filesize"
if { $filesize >= 1500 } {
puts "Faulty : Export to TEX file was done but size of file is incorrect"
}
} else {
puts "Faulty : Export to TEX file was not done"
}
if { $filesize > 1500 } {
puts "Faulty : Export to TEX file was done but size of file is incorrect"
}
} else {
puts "Faulty : Export to TEX file was not done"
}