0022898: IGES import fails in german environment
[occt.git] / tests / bugs / caf / buc60813
CommitLineData
a87752f3 1puts "==========="
2puts "BUC60813"
3puts "==========="
4
5NewDocument D MDTV-Standard
6UndoLimit D 100
7
8NewCommand D
9
10Label D 0:1
11
12SetName D 0:1 SourceLabel
13SetReal D 0:1 3.1415
14
15set Result [CopyLabel D 0:1 0:2]
16if { ${Result} == 0} {
17 puts "BUC60813: Error 1"
18} else {
19 set Name [GetName D 0:2]
20 if { [string length ${Name}] == 0 } {
21 puts "BUC60813: Error 2"
22 } else {
23 set Result [CopyLabel D 0:2 0:3]
24 if { ${Result} == 0 } {
25 puts "BUC60813: Error 3"
26 } else {
27 puts "BUC60813: OK"
28 }
29 }
30}