mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Updating test cases for 23828 issue to mark them as known on Mac OS X platform.
This commit is contained in:
parent
0c4ca3bd7b
commit
d9e8bb0884
@ -1517,7 +1517,7 @@ proc _tests_platform_def {} {
|
|||||||
|
|
||||||
# use detailed mapping for various versions of Lunix
|
# use detailed mapping for various versions of Lunix
|
||||||
# (note that mapping is rather non-uniform, for historical reasons)
|
# (note that mapping is rather non-uniform, for historical reasons)
|
||||||
if { $env(os_type) == "unix" && ! [catch {exec cat /etc/issue} issue] } {
|
if { $tcl_platform(os) == "Linux" && ! [catch {exec cat /etc/issue} issue] } {
|
||||||
if { [regexp {Mandriva[ \tA-Za-z]+([0-9]+)} $issue res num] } {
|
if { [regexp {Mandriva[ \tA-Za-z]+([0-9]+)} $issue res num] } {
|
||||||
set env(os_type) Mandriva$num
|
set env(os_type) Mandriva$num
|
||||||
} elseif { [regexp {Red Hat[ \tA-Za-z]+([0-9]+)} $issue res num] } {
|
} elseif { [regexp {Red Hat[ \tA-Za-z]+([0-9]+)} $issue res num] } {
|
||||||
@ -1534,6 +1534,8 @@ proc _tests_platform_def {} {
|
|||||||
if { [exec uname -m] == "x86_64" } {
|
if { [exec uname -m] == "x86_64" } {
|
||||||
set env(os_type) "$env(os_type)-64"
|
set env(os_type) "$env(os_type)-64"
|
||||||
}
|
}
|
||||||
|
} elseif { $tcl_platform(os) == "Darwin" } {
|
||||||
|
set env(os_type) MacOS
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_tests_platform_def
|
_tests_platform_def
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
puts "TODO #23828 MacOS: Tcl Exception: null shapes are not allowed"
|
||||||
|
puts "TODO #23828 MacOS: TEST INCOMPLETE"
|
||||||
|
|
||||||
restore [locate_data_file OCC62.brep] sh
|
restore [locate_data_file OCC62.brep] sh
|
||||||
explode sh
|
explode sh
|
||||||
|
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
set os "ALL"
|
||||||
puts "TODO OCC12345 ALL: Error : The square of result shape is"
|
|
||||||
|
if {[array get env os_type] != ""} {
|
||||||
|
set os $env(os_type)
|
||||||
|
}
|
||||||
|
|
||||||
|
if {[string compare $os "MacOS"] == 0} {
|
||||||
|
puts "TODO #23828 MacOS: Tcl Exception: sh is not a topological shape!!!"
|
||||||
|
puts "TODO #23828 MacOS: TEST INCOMPLETE"
|
||||||
|
} else {
|
||||||
|
puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||||
|
puts "TODO OCC12345 ALL: Error : The square of result shape is"
|
||||||
|
}
|
||||||
|
|
||||||
puts "================"
|
puts "================"
|
||||||
puts "OCC62"
|
puts "OCC62"
|
||||||
|
@ -2,6 +2,9 @@ puts "================"
|
|||||||
puts "OCC288"
|
puts "OCC288"
|
||||||
puts "================"
|
puts "================"
|
||||||
puts ""
|
puts ""
|
||||||
|
puts "TODO #23828 MacOS: Tcl Exception: result is not a topological shape!!!"
|
||||||
|
puts "TODO #23828 MacOS: TEST INCOMPLETE"
|
||||||
|
|
||||||
#######################################################################################
|
#######################################################################################
|
||||||
# Currently meshing (for shading) of some shapes looks incorrect
|
# Currently meshing (for shading) of some shapes looks incorrect
|
||||||
######################################################################################
|
######################################################################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user