0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / tests / bugs / modalg_6 / bug26308
CommitLineData
fd03c080 1puts "========"
2puts "OCC26308"
3puts "========"
4puts ""
5###################################################
6# Segmentation fault in BSplCLib::LocateParameter
7###################################################
8
9#Exception is thrown when computing a value of B-spline
10#surfaces in point, which is outside of its domain.
11
12pload XDE
13
14ReadStep D_First [locate_data_file OCC26308-Face.stp]
15XGetOneShape rr D_First
16explode rr f
17mksurface ss rr_1
18
19svalue ss -1.427997381773311e+018 4.512451574816904e+016 xx yy zz
20
21set bug_info_x [dump xx]
22set bug_info_y [dump yy]
23set bug_info_z [dump zz]
24
25set bug_info_x [string trim [string range $bug_info_x [expr {[string last "\n" $bug_info_x] + 1}] [expr {[string length $bug_info_x] - 1}]]]
26set bug_info_y [string trim [string range $bug_info_y [expr {[string last "\n" $bug_info_y] + 1}] [expr {[string length $bug_info_y] - 1}]]]
27set bug_info_z [string trim [string range $bug_info_z [expr {[string last "\n" $bug_info_z] + 1}] [expr {[string length $bug_info_z] - 1}]]]
28
29if {$bug_info_x != -5.42659125962715e+207} {
30 puts "ERROR: OCC26308 is reproduced. X value is incorrect."
31}
32
33if {$bug_info_y != 2.90803974424011e+209} {
34 puts "ERROR: OCC26308 is reproduced. Y value is incorrect."
35}
36
37if {$bug_info_z != -3.1731154470359e+207} {
38 puts "ERROR: OCC26308 is reproduced. Z value is incorrect."
39}