mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Change platform in occt test cases in TODOs from Debian\Mandriva to Linux Small corrections in test cases. Return procedure _tests_platform_def.
16 lines
497 B
Plaintext
Executable File
16 lines
497 B
Plaintext
Executable File
# test for command getsource
|
|
|
|
# check that path returned for command pload is as expected
|
|
set env(os_type) $tcl_platform(platform)
|
|
if { [string compare $env(os_type) "windows"] == 0 } {
|
|
set expected src/Draw/Draw_PloadCommands.cxx
|
|
} else {
|
|
set expected /src/Draw/Draw_PloadCommands.cxx
|
|
}
|
|
set path [lindex [getsourcefile pload] 1]
|
|
if { [string compare $path $expected] } {
|
|
puts "Error: command 'getsourcefile pload' returned '$path' while expected '$expected'"
|
|
}
|
|
|
|
puts "TEST COMPLETED"
|