mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Unstable test cases were reviewed Modified test cases using checktrend command Modified test cases for Linux platform Modified test cases for Debug mode
27 lines
576 B
Plaintext
27 lines
576 B
Plaintext
puts "Output with mistake is correct!"
|
|
puts "TODO #60634 ALL: Standard_ConstructionError: BRepFill_Draft"
|
|
puts "=================="
|
|
puts "BUC60634"
|
|
puts "=================="
|
|
|
|
sphere s 10
|
|
mkshell sh s
|
|
explode sh f
|
|
|
|
catch {draft r sh 0 0 1 10 shape} first
|
|
catch {draft result sh_1 0 0 1 10 shape} second
|
|
|
|
if { ! [regexp {Standard_ConstructionError:} $first] } {
|
|
puts "Error : not suitablle exception"
|
|
} else {
|
|
puts "Output is as expected"
|
|
}
|
|
|
|
if { ! [regexp {External} $second] } {
|
|
puts "Error : not word External found"
|
|
} else {
|
|
puts "Output is as expected"
|
|
}
|
|
|
|
|