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

0023450: Test bugs vis CR23407_1 fails

Files parse.rules corrected (point 2 in bug description)
Adjusting testing cases for current state of master.
Modified test cases CR23407_1 and CR23407_2
This commit is contained in:
apn 2012-10-11 14:44:35 +04:00
parent 34dd4990ed
commit dfa3d64f55
7 changed files with 71 additions and 20 deletions

View File

@ -12,7 +12,7 @@ if {[string compare $os "Debian50-64"] != 0 && [string compare $os "Debian60-64"
set inst "?" set inst "?"
} }
# CR23404 # CR23404
# puts "TODO ${inst}#22911 ${os}: Faulty shapes in variables faulty_1 to faulty_" puts "TODO ${inst}#22911 ${os}: Faulty shapes in variables faulty_1 to faulty_"
} }
if { [string compare $os "CentOS55-64"] == 0 if { [string compare $os "CentOS55-64"] == 0

View File

@ -1,5 +1,4 @@
error /\bError\b/ FAILED /\bFaulty\b/ bad shape
error /\bFaulty\b/

View File

@ -11,22 +11,48 @@ pload XDEDRAW
set r_check 1 set r_check 1
set g_check 0 set g_check 0
set b_check 0 set b_check 0
set x1 227 set x1 178
set y1 143 set y1 36
set x2 224
set y2 39
set x3 244
set y3 89
XNewDoc Doc1 XNewDoc Doc1
ReadStep Doc1 [locate_data_file CR23407-screw.step] ReadStep Doc1 [locate_data_file CR23407-screw.step]
XShow Doc1 0:1:1:1 XShow Doc1 0:1:1:1
XShowFaceBoundary Doc1 0:1:1:1 1 255 0 0 200 1 XShowFaceBoundary Doc1 0:1:1:1 1 255 0 0 10 1
vfit vfit
vsetdispmode 1 vsetdispmode 1
set color [ QAGetPixelColor ${x1} ${y1} ] set color1 [ QAGetPixelColor ${x1} ${y1} ]
regexp {RED +: +([-0-9.+eE]+)} $color full rd regexp {RED +: +([-0-9.+eE]+)} $color1 full rd1
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr regexp {GREEN +: +([-0-9.+eE]+)} $color1 full gr1
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl regexp {BLUE +: +([-0-9.+eE]+)} $color1 full bl1
set status1 0
if { $rd1 != $r_check || $gr1 != $g_check || $bl1 != $b_check } {
set status1 1
}
if { $rd != $r_check || $gr != $g_check || $bl != $b_check } { set color2 [ QAGetPixelColor ${x2} ${y2} ]
regexp {RED +: +([-0-9.+eE]+)} $color2 full rd2
regexp {GREEN +: +([-0-9.+eE]+)} $color2 full gr2
regexp {BLUE +: +([-0-9.+eE]+)} $color2 full bl2
set status2 0
if { $rd2 != $r_check || $gr2 != $g_check || $bl2 != $b_check } {
set status2 1
}
set color3 [ QAGetPixelColor ${x3} ${y3} ]
regexp {RED +: +([-0-9.+eE]+)} $color3 full rd3
regexp {GREEN +: +([-0-9.+eE]+)} $color3 full gr3
regexp {BLUE +: +([-0-9.+eE]+)} $color3 full bl3
set status3 0
if { $rd3 != $r_check || $gr3 != $g_check || $bl3 != $b_check } {
set status3 1
}
if { $status1 != 0 && $status2 != 0 && $status3 != 0 } {
puts "Error : color are not equal" puts "Error : color are not equal"
puts "Error : Boundary of face is not changed" puts "Error : Boundary of face is not changed"
} }

View File

@ -13,20 +13,46 @@ set g_check 0
set b_check 0 set b_check 0
set x1 183 set x1 183
set y1 190 set y1 190
set x2 292
set y2 358
set x3 26
set y3 265
box b 10 10 10 box b 10 10 10
vinit vinit
vdisplay b vdisplay b
vsetdispmode 1 vsetdispmode 1
vshowfaceboundary b 1 255 0 0 200 1 vshowfaceboundary b 1 255 0 0 10 1
vfit vfit
set color [ QAGetPixelColor ${x1} ${y1} ] set color1 [ QAGetPixelColor ${x1} ${y1} ]
regexp {RED +: +([-0-9.+eE]+)} $color full rd regexp {RED +: +([-0-9.+eE]+)} $color1 full rd1
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr regexp {GREEN +: +([-0-9.+eE]+)} $color1 full gr1
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl regexp {BLUE +: +([-0-9.+eE]+)} $color1 full bl1
set status1 0
if { $rd1 != $r_check || $gr1 != $g_check || $bl1 != $b_check } {
set status1 1
}
if { $rd != $r_check || $gr != $g_check || $bl != $b_check } { set color2 [ QAGetPixelColor ${x2} ${y2} ]
regexp {RED +: +([-0-9.+eE]+)} $color2 full rd2
regexp {GREEN +: +([-0-9.+eE]+)} $color2 full gr2
regexp {BLUE +: +([-0-9.+eE]+)} $color2 full bl2
set status2 0
if { $rd2 != $r_check || $gr2 != $g_check || $bl2 != $b_check } {
set status2 1
}
set color3 [ QAGetPixelColor ${x3} ${y3} ]
regexp {RED +: +([-0-9.+eE]+)} $color3 full rd3
regexp {GREEN +: +([-0-9.+eE]+)} $color3 full gr3
regexp {BLUE +: +([-0-9.+eE]+)} $color3 full bl3
set status3 0
if { $rd3 != $r_check || $gr3 != $g_check || $bl3 != $b_check } {
set status3 1
}
if { $status1 != 0 && $status2 != 0 && $status3 != 0 } {
puts "Error : color are not equal" puts "Error : color are not equal"
puts "Error : Boundary of face is not changed" puts "Error : Boundary of face is not changed"
} }

View File

@ -12,7 +12,7 @@ if { [string compare $command chamf_sequence] == 0 } {
set os $env(os_type) set os $env(os_type)
} }
if { [string compare ${os} "Windows-64-VC9"] != 0 && [string compare ${os} "Windows-64-VC10"] != 0} { if { [string compare ${os} "Windows-64-VC9"] != 0 && [string compare ${os} "Windows-64-VC10"] != 0} {
set nf 0 set nf 1
if { [string compare $group equal_dist] == 0 } { if { [string compare $group equal_dist] == 0 } {
if {[string compare $os "Debian40"] == 0 || [string compare $os "Mandriva2008"] == 0 || [string compare $os "Mandriva2010"] == 0} { if {[string compare $os "Debian40"] == 0 || [string compare $os "Mandriva2008"] == 0 || [string compare $os "Mandriva2010"] == 0} {
set nf 4 set nf 4

View File

@ -1 +1 @@
error /\bFaulty\b/ FAILED /\bFaulty\b/ bad shape

View File

@ -1 +1 @@
error /\bFaulty\b/ FAILED /\bFaulty\b/ bad shape