1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0031998: Tests - unexpected file artifact at the root of repository

Saving path for .obj file changed
This commit is contained in:
asuraven 2020-12-16 17:28:36 +03:00 committed by bugmaster
parent 39b707a6d2
commit e529b67d19

View File

@ -4,5 +4,13 @@ puts "=========="
puts ""
pload MODELING
box b 10 20 30
wavefront b the_name_of_saved_with_wavefront_command_box_that_measures_10_20_30_and_has_length_of_its_name_longer_than_100_characters
# this test check use wavefront command with long file name
set file_name "${imagedir}/${casename}"
set path_length [string length $file_name]
# but full path must be less than 255
for {set i $path_length} {$i < 255} {incr i} {
append file_name "1"
}
wavefront b ${file_name}
puts "TEST COMPLETED"