mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Redesigned the loop to work correctly with unsigned variables. Treatment of path to source file is rewritten using OSD_Path for more clarity Command getsourcefile corrected to return its result as Tcl string, and simplified Error in treatment of optional arguments in substituted puts is fixed in src/DrawResources/TestCommands.tcl Test case added: demo draw getsource
11 lines
336 B
Plaintext
11 lines
336 B
Plaintext
# test for command getsource
|
|
|
|
# check that path returned for command pload is as expected
|
|
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"
|