mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Fixed bugs that occurred when using the default std::cout from Message::DefaultMessenger() instead of Draw_Printer A dedicated option was added to Draw_ProgressIndicator, for outputting data to the tcl when performing tests Added -tclOutput parameter to XProgress command
39 lines
962 B
Plaintext
39 lines
962 B
Plaintext
puts "============"
|
|
puts "OCC22747"
|
|
puts "============"
|
|
puts ""
|
|
###########################################################################
|
|
# Progress indicator in sewing algorithm
|
|
###########################################################################
|
|
|
|
set BugNumber OCC22747
|
|
|
|
pload XSDRAW
|
|
|
|
restore [locate_data_file OCC22765.brep] a
|
|
vinit
|
|
XProgress -tclOutput
|
|
XProgress -t
|
|
set List1 [sewing result 0.1 a]
|
|
if { [string compare $List1 ""] != 0 } {
|
|
puts "Error: XProgress should not have any output in this mode"
|
|
} else {
|
|
puts "Mode -t works properly"
|
|
}
|
|
|
|
puts "----------------------"
|
|
XProgress +t
|
|
set List2 [sewing result 0.1 a]
|
|
if { [regexp "Progress:" $List2] != 1 } {
|
|
puts "Error: XProgress should have output in this mode"
|
|
} else {
|
|
puts "Mode +t works properly"
|
|
}
|
|
|
|
checkmaxtol result -ref 1.0000280013370991e-005
|
|
checknbshapes result -shell 1
|
|
checkfreebounds result 456
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|