mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Added possibility to define patterns that must be present in the test log, so that test is considered OK only if all these patterns are found. New REQUIRED statement is introduced for that, documented in dox/dev_guides/tests/tests.md. Removed all uses of decho and dlog commands, added REQUIRED where necessary. Command xdistcs is modified to output to Tcl instead of cout, and extended to report errors and warnings if distances are greater than tolerance (directly, instead of complex post-processing on Tcl level). DEBUG mode for TODOs was removed (we should have no deviations in Debug mode). Corrected indentation in DrawResources/TestCommands.tcl HTML log will now highlight TODO statement causing IMPROVEMENT status, or REQUIRED statement causing FAIL, by corresponding color.
62 lines
884 B
Plaintext
Executable File
62 lines
884 B
Plaintext
Executable File
puts "========="
|
|
puts "CR24472"
|
|
puts "========="
|
|
puts ""
|
|
###############################
|
|
## Wrong section curves
|
|
###############################
|
|
|
|
restore [locate_data_file bug24472_Pipe_1.brep] b1
|
|
|
|
explode b1 f
|
|
copy b1_2 f1
|
|
copy b1_3 f2
|
|
copy b1_6 f3
|
|
mksurface s1 f1
|
|
mksurface s2 f2
|
|
mksurface s3 f3
|
|
|
|
puts ""
|
|
puts "First test"
|
|
# 1.1 geometry
|
|
intersect i s1 s2
|
|
|
|
#donly i_22; fit
|
|
|
|
xdistcs i_22 s1 0 1 10 1e-7
|
|
|
|
puts ""
|
|
puts "Second test"
|
|
# 1.2 topology
|
|
bsection r f1 f2
|
|
bopcheck r
|
|
# r is self interfered
|
|
explode r e
|
|
mkcurve c r_1
|
|
|
|
#donly r_1; fit
|
|
|
|
xdistcs c s1 0.0714822451660209 1 10 1e-12 1e-7
|
|
|
|
puts ""
|
|
puts "Third test"
|
|
# 2.1 geometry
|
|
intersect i s1 s3
|
|
|
|
#donly i_4; fit
|
|
|
|
xdistcs i_4 s1 0 1 10 1e-6 1e-7
|
|
|
|
puts ""
|
|
puts "Fourth test"
|
|
# 2.2 topology
|
|
bsection r f1 f3
|
|
bopcheck r
|
|
#r is self interfered
|
|
explode r
|
|
mkcurve c r_1
|
|
|
|
#donly r_1; fit
|
|
|
|
xdistcs c s1 0.0714822451660209 1 10 1e-12 1e-7
|