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:
parent
34dd4990ed
commit
dfa3d64f55
@ -12,7 +12,7 @@ if {[string compare $os "Debian50-64"] != 0 && [string compare $os "Debian60-64"
|
||||
set inst "?"
|
||||
}
|
||||
# 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
|
||||
|
@ -1,5 +1,4 @@
|
||||
error /\bError\b/
|
||||
error /\bFaulty\b/
|
||||
FAILED /\bFaulty\b/ bad shape
|
||||
|
||||
|
||||
|
||||
|
@ -11,22 +11,48 @@ pload XDEDRAW
|
||||
set r_check 1
|
||||
set g_check 0
|
||||
set b_check 0
|
||||
set x1 227
|
||||
set y1 143
|
||||
set x1 178
|
||||
set y1 36
|
||||
set x2 224
|
||||
set y2 39
|
||||
set x3 244
|
||||
set y3 89
|
||||
|
||||
XNewDoc Doc1
|
||||
ReadStep Doc1 [locate_data_file CR23407-screw.step]
|
||||
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
|
||||
vsetdispmode 1
|
||||
|
||||
set color [ QAGetPixelColor ${x1} ${y1} ]
|
||||
regexp {RED +: +([-0-9.+eE]+)} $color full rd
|
||||
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr
|
||||
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl
|
||||
set color1 [ QAGetPixelColor ${x1} ${y1} ]
|
||||
regexp {RED +: +([-0-9.+eE]+)} $color1 full rd1
|
||||
regexp {GREEN +: +([-0-9.+eE]+)} $color1 full gr1
|
||||
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 : Boundary of face is not changed"
|
||||
}
|
||||
|
@ -13,20 +13,46 @@ set g_check 0
|
||||
set b_check 0
|
||||
set x1 183
|
||||
set y1 190
|
||||
set x2 292
|
||||
set y2 358
|
||||
set x3 26
|
||||
set y3 265
|
||||
|
||||
box b 10 10 10
|
||||
vinit
|
||||
vdisplay b
|
||||
vsetdispmode 1
|
||||
vshowfaceboundary b 1 255 0 0 200 1
|
||||
vshowfaceboundary b 1 255 0 0 10 1
|
||||
vfit
|
||||
|
||||
set color [ QAGetPixelColor ${x1} ${y1} ]
|
||||
regexp {RED +: +([-0-9.+eE]+)} $color full rd
|
||||
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr
|
||||
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl
|
||||
set color1 [ QAGetPixelColor ${x1} ${y1} ]
|
||||
regexp {RED +: +([-0-9.+eE]+)} $color1 full rd1
|
||||
regexp {GREEN +: +([-0-9.+eE]+)} $color1 full gr1
|
||||
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 : Boundary of face is not changed"
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ if { [string compare $command chamf_sequence] == 0 } {
|
||||
set os $env(os_type)
|
||||
}
|
||||
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 $os "Debian40"] == 0 || [string compare $os "Mandriva2008"] == 0 || [string compare $os "Mandriva2010"] == 0} {
|
||||
set nf 4
|
||||
|
@ -1 +1 @@
|
||||
error /\bFaulty\b/
|
||||
FAILED /\bFaulty\b/ bad shape
|
||||
|
@ -1 +1 @@
|
||||
error /\bFaulty\b/
|
||||
FAILED /\bFaulty\b/ bad shape
|
||||
|
Loading…
x
Reference in New Issue
Block a user