mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 09:30:48 +08:00
Fix configuration loading to correctly use FileCS parameter Add stability test for configuration changes Update documentation's de wrapping names
14 lines
358 B
Plaintext
14 lines
358 B
Plaintext
puts "============"
|
|
puts "0032821: DEWrapper - Implementation of a common toolkit for importing and exporting CAD files"
|
|
puts "============"
|
|
puts ""
|
|
|
|
# Checking the stability of ability to change the configuration's values
|
|
set old_conf [DumpConfiguration]
|
|
|
|
LoadConfiguration ""
|
|
|
|
set new_conf [DumpConfiguration]
|
|
|
|
CompareConfiguration ${old_conf} ${new_conf}
|