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
26 lines
690 B
Plaintext
Executable File
26 lines
690 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC22572"
|
|
puts "============"
|
|
puts ""
|
|
###########################################################################
|
|
# Support of progress indicator in RWStl and optimization of reading Ascii.
|
|
###########################################################################
|
|
|
|
set BugNumber OCC22572
|
|
|
|
catch { pload XSDRAW }
|
|
vinit
|
|
XProgress -tclOutput
|
|
XProgress -t
|
|
set List1 [meshfromstl result [locate_data_file bearing.stl]]
|
|
puts "----------------------"
|
|
XProgress +t
|
|
set List2 [meshfromstl result [locate_data_file bearing.stl]]
|
|
|
|
set status 0
|
|
|
|
if { ${List1} != ${List2} && [ regexp {Progress:} $List2 ] } {
|
|
puts "$BugNumber OK"
|
|
} else {
|
|
puts "Faulty $BugNumber"
|
|
} |