1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0021308: Problem of Interface_Tracefile. There are not messages.

Added test case for issue 21308
This commit is contained in:
apn 2013-03-12 17:26:24 +04:00
parent 972bd4bfeb
commit 0dc98b5b0a

27
tests/bugs/xde/bug21308 Normal file
View File

@ -0,0 +1,27 @@
puts "================"
puts "OCC21308"
puts "================"
puts ""
######################################################################################
# Problem of Interface_Tracefile. There are not messages.
######################################################################################
igesbrep [locate_data_file annie_surf.igs] a *
set out [tpstat c]
set err 0
set nb [llength $out]
if { $nb == 0 } {
set err 1
}
regexp {[ \t]*([-0-9.+eE]+)[ \t]*W:126 } $out full val
if { $val == 0 } {
set err 1
}
if { $err != 0 } {
puts "Error : No output warnings from command tpstat"
} else {
puts "OK : Command tpstat works properly"
}