1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/fclasses/bug28478
abv 6b55f8e398 0028478: Scope Names Are Swallowed in Message_ProgressSentry Constructors
Tests are added to control output and performance of progress indicator (bugs fclasses bug28478 and perf fclasses progress, respectively).

Implementation of class Draw_ProgressIndicator is improved to update indicator basing on achieved total progress (1% by default) instead of elapsed time since last update.

Method OSD_Chronometer::Restart() is fixed to actually reset the counter.

DRAW command readstl is improved to show progress indicator if configured (by command XProgress).

Description of class Message_ProgressIndicator is updated; code example is added in description of Message_ProgressSentry.
2017-08-30 13:52:33 +03:00

24 lines
719 B
Plaintext

puts "# ============"
puts "# 0028478: Scope Names Are Swallowed in Message_ProgressSentry Constructors"
puts "# ============"
puts ""
puts "# Test output of progress indicator in text mode"
pload QAcommands
set out [OCC28478 3 2]
set expected {
{Progress: 0% Outer: 1 / 3}
{Progress: 17% Outer: 1 / 3 Inner: 1 / 2}
{Progress: 33% Outer: 1 / 3 Inner: 2 / 2}
{Progress: 50% Outer: 2 / 3 Inner: 1 / 2}
{Progress: 67% Outer: 2 / 3 Inner: 2 / 2}
{Progress: 83% Outer: 3 / 3 Inner: 1 / 2}
{Progress: 100% Outer: 3 / 3 Inner: 2 / 2}
}
if { [string compare [string trim $out] [join $expected "\n"]] } {
puts "Error: output (see above) does not match expected one:"
puts "[join $expected "\n"]"
puts ""
}