mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
- Implement top-down update for assemblies in XCAFDoc_ShapeTool - Get rid of UpdateAssembly() method used for partial (parent-only) update - Adjust STEP and IGES translators to use the top-down update after filling OCAF - Implement XUpdateAssemblies Draw command - Add test cases bug28055_1 and bug28055_2 for component removal and part update - Update XDE documentation to mention the new UpdateAssemblies() method Correction for issue CR28055 Adjusting of test case bugs/fclasses/bug28217
18 lines
811 B
Plaintext
18 lines
811 B
Plaintext
puts "Testing intensive raising exceptions in parallel threads"
|
|
puts "0028217: E r r o r handling is not thread safe and causing memory corruption and sporadic crashes"
|
|
|
|
# this test will fail on vc10-13 and gcc less than 4.8
|
|
set dver [dversion]
|
|
if { ( [regexp {Compiler: MS Visual C[+][+] ([0-9]+)} $dver res ver] && $ver < 14 ) ||
|
|
( [regexp {Compiler: GCC ([0-9]+[.][0-9]+)} $dver res ver] && $ver < 4.8 ) } {
|
|
puts "TODO OCC28217 ALL: TEST INCOMPLETE"
|
|
puts "TODO OCC28217 Windows: An exception was caught"
|
|
puts "TODO OCC28217 Windows: \\*\\* Exception \\*\\*"
|
|
puts "TODO ?OCC28217 Linux: An exception was caught"
|
|
puts "TODO ?OCC28217 Linux: \\*\\* Exception \\*\\*.*"
|
|
puts "TODO ?OCC28217 Linux: \\*\\*\\* Abort"
|
|
puts "TODO ?OCC28217 Linux: ... The exception is"
|
|
}
|
|
pload QAcommands
|
|
OCC28217
|