mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Test bugs vis bug26357 is revised to check colors in more robust way. In tests bugs vis bug29091_*, size of produced file is checked to be within range of known valid sizes, rather than hard-coded (per-platform) exact sizes. FPE signals are disabled for test bugs vis bug29127 to prevent exceptions cause by software OpenGl driver. File data/occ/Box.brep is removed to avoid confusion with file box.brep in public data files used in tests. Two additional non-alphabetic-order combinations of complex types are handled in RWStepAP214_ReadWriteModule.cxx
39 lines
886 B
Plaintext
Executable File
39 lines
886 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC21091"
|
|
puts "OCC21450"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload XSDRAW
|
|
vinit
|
|
|
|
meshfromstl m [locate_data_file shape.stl]
|
|
|
|
meshtext m
|
|
|
|
vsetdispmode m 34
|
|
|
|
file delete -force ${imagedir}/${test_image}.pdf
|
|
set aFile ${imagedir}/${test_image}.pdf
|
|
|
|
vcaps -ffp 1
|
|
vexport ${aFile} PDF
|
|
|
|
set refsize_min 144000
|
|
set refsize_max 154000
|
|
|
|
if { [file exists ${aFile}] } {
|
|
puts "Export to PDF format successful"
|
|
set filesize [file size ${aFile}]
|
|
if { $filesize < $refsize_min || $filesize > $refsize_max } {
|
|
puts "Error: Export to PDF file was done but size of file is incorrect"
|
|
puts " (current = $filesize, expected to be in range \[$refsize_min, $refsize_max\])."
|
|
puts "Error: Update refsize limits if necessary."
|
|
}
|
|
} else {
|
|
puts "Error: Export to PDF format has failed"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
|
|