1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

16 lines
547 B
Plaintext

vexport ${aFile} ${format}
vglinfo
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
if { [file exists ${aFile}] } {
puts "The file has been exported to ${format}."
set filesize [file size ${aFile}]
# Check if difference of size is more 5%
if { $filesize < $size && [expr 1.*($size - $filesize)/$size] > 0.05 } {
puts "Error: The file has been exported to ${format}, but the result has a different size ($filesize instead of $size)."
}
} else {
puts "Error: Impossible to export file to ${format}."
}