mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030397: Data Exchange - STEP Reader extension to support entities which have a text description field with not supported symbols
STEP file is now opened in binary mode (instead of text mode) to avoid unexpected handling of control symbols inside string constants.
This commit is contained in:
parent
c99ad5d760
commit
e0a25f3d93
@ -85,7 +85,7 @@ FILE* stepread_setinput (char* nomfic)
|
||||
{
|
||||
FILE* newin ;
|
||||
if (strlen(nomfic) == 0) return stepin ;
|
||||
newin = OSD_OpenFile(nomfic,"r");
|
||||
newin = OSD_OpenFile(nomfic,"rb");
|
||||
|
||||
if (newin == NULL) {
|
||||
return NULL ;
|
||||
|
11
tests/bugs/step/bug30397
Normal file
11
tests/bugs/step/bug30397
Normal file
@ -0,0 +1,11 @@
|
||||
puts "========================"
|
||||
puts "0030397: Data Exchange - STEP Reader extension to support entities which have a text description field with not supported symbols"
|
||||
puts "========================"
|
||||
|
||||
ReadStep D [locate_data_file bug31397.stp]
|
||||
|
||||
set state [data c]
|
||||
|
||||
if { [regexp "141153" $state] != 1 } {
|
||||
puts "Error : wrong count of transferred roots"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user