mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Command checkplatform was created. All test cases were updated. Global variable os_type was eliminated. New option -osx (MacOS) for procedure checkplatform was added.
15 lines
338 B
Plaintext
15 lines
338 B
Plaintext
# Test performance of dynamic loading / unloading of large OCCT library
|
|
|
|
set libname TKSTEP
|
|
|
|
switch -nocase [checkplatform] {
|
|
windows {set libname ${libname}.dll}
|
|
linux {set libname lib${libname}.so}
|
|
macos {set libname lib${libname}.dylib}
|
|
}
|
|
|
|
for {set i 0} {$i < 1000} {incr i} {
|
|
puts "Iteration $i"
|
|
dtryload $libname
|
|
}
|