mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Additional checks for underlying algorithms have been added test case get rid of the warning
17 lines
410 B
Plaintext
17 lines
410 B
Plaintext
puts "========"
|
|
puts "OCC27357"
|
|
puts "========"
|
|
puts ""
|
|
#################################################################
|
|
# Geom2dGcc_Circ2d2TanOn: check status of sub-algorithms to avoid exceptions
|
|
#################################################################
|
|
|
|
pload QAcommands
|
|
|
|
set info [OCC27357]
|
|
if { [regexp "Exception" $info] != 0 } {
|
|
puts "Error : Exception was caught"
|
|
} else {
|
|
puts "OK"
|
|
}
|