1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

Compare commits

...

4 Commits

Author SHA1 Message Date
bugmaster
bd24840192 0032451: Tests - adjusting test cases with Improvement status on macOS arm64 platforms
- Load OPENGL draw plugin before using vcaps
- Skip optional VTK plugin on macOS within "oit" test
- Processing improvements
2021-06-18 15:09:07 +03:00
kgv
672343ccee 0032430: Coding Rules - eliminate CLang warning -Wdeprecated-copy
Introduced Standard_DELETE alias to C++11 feature "=delete".
2021-06-16 15:24:11 +03:00
bugmaster
d517328a5f Adding __APPLE_ definition for libraries 2021-06-16 13:06:44 +03:00
Natalia Ermolaeva
2395d87c18 0032432: Inspectors - problems with tools test group 2021-06-16 10:17:36 +03:00
72 changed files with 116 additions and 164 deletions

View File

@@ -143,8 +143,8 @@ protected:
private: private:
// disallow copies // disallow copies
Extrema_ExtCC (Extrema_ExtCC& ); Extrema_ExtCC (Extrema_ExtCC& ) Standard_DELETE;
Extrema_ExtCC& operator= (Extrema_ExtCC& ); Extrema_ExtCC& operator= (Extrema_ExtCC& ) Standard_DELETE;
private: private:

View File

@@ -87,8 +87,8 @@ private:
private: private:
// disallow copies // disallow copies
Extrema_ExtCS (Extrema_ExtCS& ); Extrema_ExtCS (Extrema_ExtCS& ) Standard_DELETE;
Extrema_ExtCS& operator= (Extrema_ExtCS& ); Extrema_ExtCS& operator= (Extrema_ExtCS& ) Standard_DELETE;
private: private:

View File

@@ -108,8 +108,8 @@ private:
private: private:
// disallow copies // disallow copies
Extrema_GenExtCS (const Extrema_GenExtCS& ); Extrema_GenExtCS (const Extrema_GenExtCS& ) Standard_DELETE;
Extrema_GenExtCS& operator= (const Extrema_GenExtCS& ); Extrema_GenExtCS& operator= (const Extrema_GenExtCS& ) Standard_DELETE;
private: private:

View File

@@ -110,8 +110,8 @@ private:
private: private:
// disallow copies // disallow copies
Extrema_GenExtPS (const Extrema_GenExtPS& ); Extrema_GenExtPS (const Extrema_GenExtPS& ) Standard_DELETE;
Extrema_GenExtPS& operator= (const Extrema_GenExtPS& ); Extrema_GenExtPS& operator= (const Extrema_GenExtPS& ) Standard_DELETE;
private: private:

View File

@@ -89,8 +89,8 @@ public:
private: private:
// disallow copies // disallow copies
Extrema_GenExtSS (const Extrema_GenExtSS& ); Extrema_GenExtSS (const Extrema_GenExtSS& ) Standard_DELETE;
Extrema_GenExtSS& operator= (const Extrema_GenExtSS& ); Extrema_GenExtSS& operator= (const Extrema_GenExtSS& ) Standard_DELETE;
private: private:

View File

@@ -37,6 +37,18 @@
#define Standard_OVERRIDE #define Standard_OVERRIDE
#endif #endif
//! @def Standard_DELETE
//! Alias for C++11 keyword "=delete" marking methods to be deleted.
#if defined(__cplusplus) && (__cplusplus >= 201100L)
// part of C++11 standard
#define Standard_DELETE =delete
#elif defined(_MSC_VER) && (_MSC_VER >= 1800)
// implemented since VS2013
#define Standard_DELETE =delete
#else
#define Standard_DELETE
#endif
//! @def Standard_FALLTHROUGH //! @def Standard_FALLTHROUGH
//! Should be used in a switch statement immediately before a case label, //! Should be used in a switch statement immediately before a case label,
//! if code associated with the previous case label may fall through to that //! if code associated with the previous case label may fall through to that

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "===========" puts "==========="
puts "0022783: Improvement of BRepOffsetAPI_MakeFilling: keep old and new boundary edges with all pcurves" puts "0022783: Improvement of BRepOffsetAPI_MakeFilling: keep old and new boundary edges with all pcurves"
puts "===========" puts "==========="

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "============" puts "============"
puts "0022786: 64bit issue in AdvApp2Var" puts "0022786: 64bit issue in AdvApp2Var"
puts "============" puts "============"

View File

@@ -2,7 +2,6 @@ puts "============"
puts "CR23367" puts "CR23367"
puts "============" puts "============"
puts "" puts ""
puts "TODO OCC24156 MacOS: Error : The length of result shape is"
########################################################################################################## ##########################################################################################################
# New functionality restoring the middle path of pipe-like shape # New functionality restoring the middle path of pipe-like shape
########################################################################################################## ##########################################################################################################

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
pload QAcommands pload QAcommands
puts "========" puts "========"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: Tcl Exception"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "========================" puts "========================"
puts " OCC474 " puts " OCC474 "
puts "========================" puts "========================"

View File

@@ -1,7 +1,3 @@
puts "TODO OCC24156 MacOS: Faulty OCC485: function BLEND works wrongly"
puts "TODO OCC24156 MacOS: Tcl Exception: result is not a topological shape!!!"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "========================" puts "========================"
puts " OCC487 " puts " OCC487 "
puts "========================" puts "========================"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: Tcl Exception: tolerance ang"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "========================" puts "========================"
puts "OCC625" puts "OCC625"
puts "========================" puts "========================"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: OCC8842: Faulty"
puts "============" puts "============"
puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution" puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution"
puts "============" puts "============"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: OCC8842: Faulty"
puts "============" puts "============"
puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution" puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution"
puts "============" puts "============"

View File

@@ -1,7 +1,5 @@
puts "TODO OCC25913 ALL: Error : is WRONG because number of" puts "TODO OCC25913 ALL: Error : is WRONG because number of"
puts "TODO OCC25913 ALL: Error : The area of result shape is" puts "TODO OCC25913 ALL: Error : The area of result shape is"
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: OCC8842: Faulty"
puts "============" puts "============"
puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution" puts "00008842: E r r o r s in Offset Shape algorithm working with bspline and surface of revolution"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "============" puts "============"
puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm" puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm"
puts "============" puts "============"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "============" puts "============"
puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm" puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm"
puts "============" puts "============"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "============" puts "============"
puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm" puts "0023870: Integration of new options of sweeping into BRepOffsetAPI_MakePipe algorithm"
puts "============" puts "============"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: Tcl Exception: compute of chamfer failed"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "================" puts "================"
puts "OCC266" puts "OCC266"
puts "================" puts "================"

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: \\*\\*\\* Abort"
puts "TODO OCC24156 MacOS: ... The exception is"
puts "========================" puts "========================"
puts "BUC60948" puts "BUC60948"
puts "========================" puts "========================"

View File

@@ -1,5 +1,5 @@
puts "TODO OCC26174 ALL: ERROR: OCC26174 is reproduced." puts "TODO OCC26174 Windows: ERROR: OCC26174 is reproduced."
puts "TODO OCC26174 Linux: ERROR: OCC26174 is reproduced."
puts "========" puts "========"
puts "OCC26174" puts "OCC26174"
puts "========" puts "========"

View File

@@ -5,5 +5,5 @@ set chamf_dist_dist [list "0.05 0.05" "0.05 0.09" "0.1 0.08"]
set chamf_equal_dist [list "0.05 " "0.05 " "0.2 "] set chamf_equal_dist [list "0.05 " "0.05 " "0.2 "]
if { [string compare $command chamf_sequence] == 0 && [string compare $group equal_dist] == 0 } { if { [string compare $command chamf_sequence] == 0 && [string compare $group equal_dist] == 0 } {
puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_" puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_"
puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed" # puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed"
} }

View File

@@ -8,14 +8,14 @@ if { [string compare $command chamf] == 0 } {
puts "TODO OCC22909 All: compute of chamfer failed" puts "TODO OCC22909 All: compute of chamfer failed"
} }
} else { } else {
if {[string compare $group dist_angle] == 0} { # if {[string compare $group dist_angle] == 0} {
puts "TODO OCC22909 MacOS: compute of chamfer failed" # puts "TODO OCC22909 MacOS: compute of chamfer failed"
} # }
if {[string compare $group dist_dist] == 0} { # if {[string compare $group dist_dist] == 0} {
puts "TODO OCC22909 MacOS: compute of chamfer failed" # puts "TODO OCC22909 MacOS: compute of chamfer failed"
} # }
if {[string compare $group equal_dist] == 0} { if {[string compare $group equal_dist] == 0} {
puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_" puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_"
puts "TODO OCC22909 MacOS: compute of chamfer failed" # puts "TODO OCC22909 MacOS: compute of chamfer failed"
} }
} }

View File

@@ -10,12 +10,12 @@ if { [string compare $command chamf] == 0 } {
} else { } else {
if {[string compare $group dist_angle] == 0} { if {[string compare $group dist_angle] == 0} {
puts "TODO OCC22909 All:Faulty shapes in variables faulty_1 to faulty_" puts "TODO OCC22909 All:Faulty shapes in variables faulty_1 to faulty_"
puts "TODO OCC24156 MacOS: compute of chamfer failed" # puts "TODO OCC24156 MacOS: compute of chamfer failed"
}
if {[string compare $group dist_dist] == 0} {
puts "TODO OCC24156 MacOS: compute of chamfer failed"
}
if {[string compare $group equal_dist] == 0} {
puts "TODO OCC24156 MacOS: compute of chamfer failed"
} }
# if {[string compare $group dist_dist] == 0} {
# puts "TODO OCC24156 MacOS: compute of chamfer failed"
# }
# if {[string compare $group equal_dist] == 0} {
# puts "TODO OCC24156 MacOS: compute of chamfer failed"
# }
} }

View File

@@ -5,16 +5,11 @@ set chamf_dist_dist [list "0.1 0.11" " 0.2 0.21"]
set chamf_equal_dist [list "0.1 " " 0.2 "] set chamf_equal_dist [list "0.1 " " 0.2 "]
if { [string compare $command chamf] == 0 } { if { [string compare $command chamf] == 0 } {
puts "TODO OCC22909 All: compute of chamfer failed" puts "TODO OCC22909 All: compute of chamfer failed"
} else {
if {[string compare $group dist_angle] == 0} {
puts "TODO OCC22909 MacOS: compute of chamfer failed"
} else { } else {
if {[string compare $group dist_dist] == 0} {
puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_" puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_"
} }
if {[string compare $group dist_dist] == 0} {
puts "TODO OCC22909 MacOS: compute of chamfer failed"
}
if {[string compare $group equal_dist] == 0} { if {[string compare $group equal_dist] == 0} {
puts "TODO OCC22909 MacOS: compute of chamfer failed" puts "TODO OCC22909 ALL:Faulty shapes in variables faulty_1 to faulty_"
} }
} }

View File

@@ -25,16 +25,16 @@ if { [string compare $command chamf_sequence] == 0 } {
if { [checkplatform -osx] } { if { [checkplatform -osx] } {
if { [string compare $group dist_dist] == 0 } { if { [string compare $group dist_dist] == 0 } {
puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed" # puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed"
set nf 8 set nf 8
} }
if { [string compare $group equal_dist] == 0 } { if { [string compare $group equal_dist] == 0 } {
puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed" # puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed"
set nf 2 set nf 2
} }
if { [string compare $group dist_angle] == 0 } { # if { [string compare $group dist_angle] == 0 } {
puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed" # puts "TODO OCC24156 MacOS: chamfer is not done. compute of chamfer failed"
} # }
} }
if { $nf != 0 } { if { $nf != 0 } {

View File

@@ -1,4 +1,4 @@
pload XDE OCAF MODELING VISUALIZATION pload XDE OCAF MODELING VISUALIZATION
Close D -silent Close D -silent
# PBR requires OpenGL 3.0+ on macOS # PBR requires OpenGL 3.0+ on macOS
if { $::tcl_platform(os) == "Darwin" } { vcaps -core } if { $::tcl_platform(os) == "Darwin" } { vdriver -load OPENGL; vcaps -core }

View File

@@ -1,4 +1,4 @@
pload XDE OCAF MODELING VISUALIZATION pload XDE OCAF MODELING VISUALIZATION
Close D -silent Close D -silent
# PBR requires OpenGL 3.0+ on macOS # PBR requires OpenGL 3.0+ on macOS
if { $::tcl_platform(os) == "Darwin" } { vcaps -core } if { $::tcl_platform(os) == "Darwin" } { vdriver -load OPENGL; vcaps -core }

View File

@@ -1,4 +1,4 @@
pload XDE OCAF MODELING VISUALIZATION pload XDE OCAF MODELING VISUALIZATION
Close D -silent Close D -silent
# PBR requires OpenGL 3.0+ on macOS # PBR requires OpenGL 3.0+ on macOS
if { $::tcl_platform(os) == "Darwin" } { vcaps -core } if { $::tcl_platform(os) == "Darwin" } { vdriver -load OPENGL; vcaps -core }

View File

@@ -1,3 +1 @@
puts "TODO OCC24156 MacOS: Faulty shapes in variables faulty_1 to faulty_"
restore [locate_data_file CTO900_pro5363c.rle] a restore [locate_data_file CTO900_pro5363c.rle] a

View File

@@ -1,6 +1,5 @@
if { [info exists bug23197] == 0 || $bug23197 == 0 } { if { [info exists bug23197] == 0 || $bug23197 == 0 } {
puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_2" puts "TODO OCC23127 ALL: Faulty shapes in variables faulty_1 to faulty_2"
} }
puts "TODO OCC24156 MacOS: Faulty shapes in variables faulty_1 to faulty_"
restore [locate_data_file rrr.rle] a restore [locate_data_file rrr.rle] a

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done." puts "TODO OCC23748 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 ALL: Error: The command cannot be built"
puts "TODO OCC26556 ALL: Error : The offset cannot be built." puts "TODO OCC26556 ALL: Error : The offset cannot be built."

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziersurf c 3 2 \ beziersurf c 3 2 \
0 0 0 0 5 5 2 14 3 \ 0 0 0 0 5 5 2 14 3 \

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC23068 ALL: Error: bsection of the result and s is not equal to zero." puts "TODO OCC23068 ALL: Error: bsection of the result and s is not equal to zero."
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1 bsplinecurve w1 3 2 -1.0 4 1.0 4 0 0 0 1 2 10 0 1 4 6 0 1 10 0 0 1
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,5 @@
puts "TODO OCC24156 MacOS: An exception was caught"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0 beziercurve w1 5 0 0 0 20 0 0 20 5 0 25 10 0 10 20 0
mkedge w1 w1 mkedge w1 w1

View File

@@ -1,5 +1,3 @@
puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG"
restore [locate_data_file offset_wire_103.brep] s restore [locate_data_file offset_wire_103.brep] s
set length 316.751 set length 316.751

View File

@@ -1,5 +1,3 @@
puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG"
restore [locate_data_file offset_wire_103.brep] s restore [locate_data_file offset_wire_103.brep] s
set length 245.13 set length 245.13

View File

@@ -1,5 +1,3 @@
puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG"
restore [locate_data_file offset_wire_103.brep] s restore [locate_data_file offset_wire_103.brep] s
set length 94.1559 set length 94.1559

View File

@@ -1,4 +1,3 @@
puts "TODO OCC23068 MacOS: Error : The resulting shape is WRONG"
restore [locate_data_file offset_wire_099.brep] s restore [locate_data_file offset_wire_099.brep] s
set length 302.636 set length 302.636

View File

@@ -1,4 +1,3 @@
puts "TODO OCC23068 MacOS: Error : The resulting shape is WRONG"
restore [locate_data_file offset_wire_099.brep] s restore [locate_data_file offset_wire_099.brep] s
set length 325.844 set length 325.844

View File

@@ -1,6 +1,9 @@
puts "TODO OCC23748 ALL: Error : The offset cannot be built." puts "TODO OCC23748 Windows: Error : The offset cannot be built."
puts "TODO OCC23748 ALL: Error: The command cannot be built" puts "TODO OCC23748 Windows: Error: The command cannot be built"
puts "TODO OCC23748 ALL: Error: Offset is not done." puts "TODO OCC23748 Windows: Error: Offset is not done."
puts "TODO OCC23748 Linux: Error : The offset cannot be built."
puts "TODO OCC23748 Linux: Error: The command cannot be built"
puts "TODO OCC23748 Linux: Error: Offset is not done."
puts "TODO OCC24156 MacOS: Error : The length of result shape is" puts "TODO OCC24156 MacOS: Error : The length of result shape is"
puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG" puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG"

View File

@@ -43,7 +43,7 @@ vcaps -opaqueAlpha 0
# VTK viewer, just for comparison # VTK viewer, just for comparison
set hasVtk 0 set hasVtk 0
if { [vdriver -default] == "TKOpenGl" } { if { [vdriver -default] == "TKOpenGl" && $::tcl_platform(os) != "Darwin" } {
set hasVtk 1 set hasVtk 1
if { [catch { pload VIS }] } { set hasVtk 0 } if { [catch { pload VIS }] } { set hasVtk 0 }
} }

View File

@@ -1,6 +1,3 @@
puts "TODO OCC24156 MacOS: Tcl Exception:"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "========" puts "========"
puts "OCC453" puts "OCC453"
puts "(case 1)" puts "(case 1)"

View File

@@ -1,5 +1,3 @@
puts "TODO OCC24156 MacOS: Tcl Exception: tolerance ang"
puts "TODO OCC24156 MacOS: TEST INCOMPLETE"
puts "TODO OCC27203 ALL: Error: Max tolerance" puts "TODO OCC27203 ALL: Error: Max tolerance"
##puts "TODO OCC27203 All: Error : The area of result shape is" ##puts "TODO OCC27203 All: Error : The area of result shape is"

View File

@@ -2,8 +2,6 @@ puts "================"
puts "OCC288: Currently meshing (for shading) of some shapes looks incorrect" puts "OCC288: Currently meshing (for shading) of some shapes looks incorrect"
puts "================" puts "================"
puts "" puts ""
puts "TODO #23828 MacOS: Tcl Exception: result is not a topological shape!!!"
puts "TODO #23828 MacOS: TEST INCOMPLETE"
pload MODELING VISUALIZATION pload MODELING VISUALIZATION
restore [locate_data_file OCC288-shading_176.brep] result restore [locate_data_file OCC288-shading_176.brep] result

View File

@@ -39,6 +39,9 @@ TInspectorAPI_Communicator* TInspectorAPI_Communicator::LoadPluginLibrary
TCollection_AsciiString aPluginLibraryName = thePluginName; TCollection_AsciiString aPluginLibraryName = thePluginName;
#ifdef _WIN32 #ifdef _WIN32
aPluginLibraryName += ".dll"; aPluginLibraryName += ".dll";
#elif __APPLE__
aPluginLibraryName.Prepend ("lib");
aPluginLibraryName += ".dylib";
#else #else
aPluginLibraryName.Prepend ("lib"); aPluginLibraryName.Prepend ("lib");
aPluginLibraryName += ".so"; aPluginLibraryName += ".so";

View File

@@ -438,7 +438,7 @@ bool VInspector_Window::OpenFile(const TCollection_AsciiString& theFileName)
Handle(AIS_Shape) aPresentation = new AIS_Shape (aShape); Handle(AIS_Shape) aPresentation = new AIS_Shape (aShape);
aPresentation->Attributes()->SetAutoTriangulation (Standard_False); aPresentation->Attributes()->SetAutoTriangulation (Standard_False);
View_Displayer* aDisplayer = myViewWindow->Displayer(); View_Displayer* aDisplayer = displayer();
aDisplayer->DisplayPresentation (aPresentation); aDisplayer->DisplayPresentation (aPresentation);
aContext->UpdateCurrentViewer(); aContext->UpdateCurrentViewer();