1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/perf/fclasses/bug24947
ski 863f782a42 0027146: Create command checkplatform
Command checkplatform was created.
All test cases were updated.

Global variable os_type was eliminated.
New option -osx (MacOS) for procedure checkplatform was added.
2016-04-08 11:42:00 +03:00

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
}