mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0026021: Integration boolean test cases
Added subgroups volumemaker, gdml_private and gdml_public Moved scripts from public repository ti test cases Added more TODOs to unstable test cases Small corrections for unstable test cases
This commit is contained in:
parent
985aed12ec
commit
cd37e04879
@ -5,6 +5,13 @@ if { [isdraw result] } {
|
||||
set ch [checkshape result]
|
||||
puts $ch
|
||||
|
||||
if {[info exists command] && ${command} == "mkvolume"} {
|
||||
set bcheck [bopcheck result]
|
||||
puts $bcheck
|
||||
if {![regexp {This shape seems to be OK.} $bcheck]} {
|
||||
puts "Error: bopcheck failed"
|
||||
}
|
||||
}
|
||||
if { [info exists square] } {
|
||||
set prop "area"
|
||||
set mass $square
|
||||
@ -20,7 +27,7 @@ if { [isdraw result] } {
|
||||
}
|
||||
|
||||
#if mass (length or square) is empty in test case then result should be an empty shape.
|
||||
if { [string compare "$mass" "empty"] != 0 } {
|
||||
if { [info exists mass] && [string compare "$mass" "empty"] != 0 } {
|
||||
if { $m == 0 } {
|
||||
puts "Error : The $command is not valid. The $prop is 0."
|
||||
}
|
||||
@ -53,19 +60,23 @@ if { [isdraw result] } {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if { $m != 0 } {
|
||||
if { [info exists mass] && $m != 0 } {
|
||||
puts "Error : The $command is not valid. The $prop is $m"
|
||||
}
|
||||
}
|
||||
|
||||
smallview
|
||||
if { $m > 0 } {
|
||||
donly result
|
||||
if { [info exists nbsh_v ] } {
|
||||
if { [info exists m ] } {
|
||||
if { $m > 0 } {
|
||||
donly result
|
||||
if { [info exists nbsh_v ] } {
|
||||
explode result v
|
||||
}
|
||||
}
|
||||
} else {
|
||||
donly a b
|
||||
}
|
||||
} else {
|
||||
donly a b
|
||||
donly result
|
||||
}
|
||||
fit
|
||||
xwd $imagedir/${test_image}.png
|
||||
|
2
tests/boolean/gdml_private/A1
Normal file
2
tests/boolean/gdml_private/A1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-est-dalle-et1.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A2
Normal file
2
tests/boolean/gdml_private/A2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-est-dalle-rdc.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A3
Normal file
2
tests/boolean/gdml_private/A3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-est-rdc_410-ta14969.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A4
Normal file
2
tests/boolean/gdml_private/A4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-est-rdc_410-ta15182.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A5
Normal file
2
tests/boolean/gdml_private/A5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-est-rdc_410-ta15183.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A6
Normal file
2
tests/boolean/gdml_private/A6
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-dalle-et1.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A7
Normal file
2
tests/boolean/gdml_private/A7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-dalle-rdc.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A8
Normal file
2
tests/boolean/gdml_private/A8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-et1_15386.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/A9
Normal file
2
tests/boolean/gdml_private/A9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-et1_15396.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B1
Normal file
2
tests/boolean/gdml_private/B1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-et1_15399.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B2
Normal file
2
tests/boolean/gdml_private/B2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-rdc_15373.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B3
Normal file
2
tests/boolean/gdml_private/B3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-rdc_15382.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B4
Normal file
2
tests/boolean/gdml_private/B4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_allee-ouest-rdc_15397.prt.2.gdml.tcl]
|
||||
|
10
tests/boolean/gdml_private/B5
Normal file
10
tests/boolean/gdml_private/B5
Normal file
@ -0,0 +1,10 @@
|
||||
# ? - because sometimes test is killed by elapsed time
|
||||
puts "TODO OCC26018 ALL: TEST INCOMPLETE"
|
||||
puts "TODO ?OCC26018 ALL: Process killed by CPU limit"
|
||||
puts "TODO ?OCC26017 Debian60-64: \\*\\* Exception"
|
||||
puts "TODO ?OCC26017 Debian60-64: An exception was caught"
|
||||
puts "TODO ?OCC26017 Debian60-64: Tcl Exception:"
|
||||
puts "TODO ?OCC26017 Debian60-64: Error: sh141385A0_copy is not a valid shape
|
||||
|
||||
source [locate_data_file 20000_asm-gene.asm.6.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/B6
Normal file
3
tests/boolean/gdml_private/B6
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_bat-nord.asm.4.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B7
Normal file
2
tests/boolean/gdml_private/B7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et1.asm.1.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B8
Normal file
2
tests/boolean/gdml_private/B8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et1.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/B9
Normal file
2
tests/boolean/gdml_private/B9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et1_13081.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C1
Normal file
2
tests/boolean/gdml_private/C1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et1_13298.prt.2.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/C2
Normal file
3
tests/boolean/gdml_private/C2
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_bat-nord_et2.asm.4.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C3
Normal file
2
tests/boolean/gdml_private/C3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et2_13069.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C4
Normal file
2
tests/boolean/gdml_private/C4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et2_13083.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C5
Normal file
2
tests/boolean/gdml_private/C5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et2_13085.prt.2.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/C6
Normal file
3
tests/boolean/gdml_private/C6
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_bat-nord_et2_13302.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C7
Normal file
2
tests/boolean/gdml_private/C7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_et2_13306.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C8
Normal file
2
tests/boolean/gdml_private/C8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_rdc.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/C9
Normal file
2
tests/boolean/gdml_private/C9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_rdc_13078.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D1
Normal file
2
tests/boolean/gdml_private/D1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_rdc_13294.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D2
Normal file
2
tests/boolean/gdml_private/D2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_ss1.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D3
Normal file
2
tests/boolean/gdml_private/D3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_ss1_13075.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D4
Normal file
2
tests/boolean/gdml_private/D4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_ss1_13086.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D5
Normal file
2
tests/boolean/gdml_private/D5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-nord_ss1_13092.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D6
Normal file
2
tests/boolean/gdml_private/D6
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud.asm.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D7
Normal file
2
tests/boolean/gdml_private/D7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_rdc.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D8
Normal file
2
tests/boolean/gdml_private/D8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_rdc_dalle-sup.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/D9
Normal file
2
tests/boolean/gdml_private/D9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_rdc_murs.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E1
Normal file
2
tests/boolean/gdml_private/E1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_ss1.asm.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E2
Normal file
2
tests/boolean/gdml_private/E2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_ss1_dalle.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E3
Normal file
2
tests/boolean/gdml_private/E3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_bat-sud_ss1_murs.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E4
Normal file
2
tests/boolean/gdml_private/E4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate-inf.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E5
Normal file
2
tests/boolean/gdml_private/E5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate-sup.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E6
Normal file
2
tests/boolean/gdml_private/E6
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E7
Normal file
2
tests/boolean/gdml_private/E7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_inf.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E8
Normal file
2
tests/boolean/gdml_private/E8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_ne.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/E9
Normal file
2
tests/boolean/gdml_private/E9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_no.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F1
Normal file
2
tests/boolean/gdml_private/F1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_se.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F2
Normal file
2
tests/boolean/gdml_private/F2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_so.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F3
Normal file
2
tests/boolean/gdml_private/F3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_casemate_sup.asm.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F4
Normal file
2
tests/boolean/gdml_private/F4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6022.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F5
Normal file
2
tests/boolean/gdml_private/F5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6023.prt.5.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/F6
Normal file
3
tests/boolean/gdml_private/F6
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO OCC26018 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et1_401-ta6025.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/F7
Normal file
2
tests/boolean/gdml_private/F7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6026.prt.3.gdml.tcl]
|
||||
|
6
tests/boolean/gdml_private/F8
Normal file
6
tests/boolean/gdml_private/F8
Normal file
@ -0,0 +1,6 @@
|
||||
puts "TODO OCC26018 ALL: Error : The area of the resulting shape is"
|
||||
puts "TODO OCC26018 Debian60-64: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et1_401-ta6027.prt.2.gdml.tcl]
|
||||
|
||||
## image is differ from application
|
||||
set square 0
|
2
tests/boolean/gdml_private/F9
Normal file
2
tests/boolean/gdml_private/F9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6028.prt.2.gdml.tcl]
|
||||
|
7
tests/boolean/gdml_private/G1
Normal file
7
tests/boolean/gdml_private/G1
Normal file
@ -0,0 +1,7 @@
|
||||
puts "TODO ?OCC26017 Debian60-64: \\*\\* Exception"
|
||||
puts "TODO ?OCC26017 Debian60-64: An exception was caught"
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO ?OCC26017 Debian60-64: Process killed by CPU limit"
|
||||
puts "TODO ?OCC26017 Debian60-64: TEST INCOMPLETE"
|
||||
source [locate_data_file 20000_et1_401-ta6029.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G2
Normal file
2
tests/boolean/gdml_private/G2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6030.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G3
Normal file
2
tests/boolean/gdml_private/G3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6031.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G4
Normal file
2
tests/boolean/gdml_private/G4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et1_401-ta6033.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G5
Normal file
2
tests/boolean/gdml_private/G5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et3_401-ta6035.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G6
Normal file
2
tests/boolean/gdml_private/G6
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et3_401-ta6036.prt.2.gdml.tcl]
|
||||
|
6
tests/boolean/gdml_private/G7
Normal file
6
tests/boolean/gdml_private/G7
Normal file
@ -0,0 +1,6 @@
|
||||
puts "TODO OCC26018 ALL: Error : The area of the resulting shape is"
|
||||
puts "TODO OCC26018 Debian60-64: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et3_401-ta6037.prt.2.gdml.tcl]
|
||||
|
||||
## image is differ from application
|
||||
set square 0
|
2
tests/boolean/gdml_private/G8
Normal file
2
tests/boolean/gdml_private/G8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et3_401-ta6039.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/G9
Normal file
2
tests/boolean/gdml_private/G9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6041.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H1
Normal file
2
tests/boolean/gdml_private/H1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6042.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H2
Normal file
2
tests/boolean/gdml_private/H2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6044.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H3
Normal file
2
tests/boolean/gdml_private/H3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6045.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H4
Normal file
2
tests/boolean/gdml_private/H4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6046.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H5
Normal file
2
tests/boolean/gdml_private/H5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6047.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H6
Normal file
2
tests/boolean/gdml_private/H6
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6048.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H7
Normal file
2
tests/boolean/gdml_private/H7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6049.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/H8
Normal file
2
tests/boolean/gdml_private/H8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6050.prt.2.gdml.tcl]
|
||||
|
5
tests/boolean/gdml_private/H9
Normal file
5
tests/boolean/gdml_private/H9
Normal file
@ -0,0 +1,5 @@
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO ?OCC26017 ALL: TEST INCOMPLETE"
|
||||
puts "TODO ?OCC26017 ALL: Process killed by CPU limit"
|
||||
source [locate_data_file 20000_et4_401-ta6051.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/I1
Normal file
2
tests/boolean/gdml_private/I1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6052.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/I2
Normal file
2
tests/boolean/gdml_private/I2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6158.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/I3
Normal file
2
tests/boolean/gdml_private/I3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6160.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/I4
Normal file
2
tests/boolean/gdml_private/I4
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6162.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/I5
Normal file
2
tests/boolean/gdml_private/I5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et4_401-ta6163.prt.2.gdml.tcl]
|
||||
|
7
tests/boolean/gdml_private/I6
Normal file
7
tests/boolean/gdml_private/I6
Normal file
@ -0,0 +1,7 @@
|
||||
puts "TODO ?OCC26017 Windows: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO ?OCC26017 Windows: Error : The area of the resulting shape is"
|
||||
puts "TODO ?OCC26017 ALL: Error : The gdml is not valid. The area is"
|
||||
source [locate_data_file 20000_et4_401-ta6319.prt.2.gdml.tcl]
|
||||
|
||||
## image is differ from application
|
||||
set square 0
|
2
tests/boolean/gdml_private/I7
Normal file
2
tests/boolean/gdml_private/I7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6154.prt.2.gdml.tcl]
|
||||
|
5
tests/boolean/gdml_private/I8
Normal file
5
tests/boolean/gdml_private/I8
Normal file
@ -0,0 +1,5 @@
|
||||
puts "TODO OCC26018 ALL: Error : The area of the resulting shape is"
|
||||
source [locate_data_file 20000_et5_401-ta6155.prt.2.gdml.tcl]
|
||||
|
||||
## image is differ from application
|
||||
set square 0
|
2
tests/boolean/gdml_private/I9
Normal file
2
tests/boolean/gdml_private/I9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6155.prt.3.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/J1
Normal file
3
tests/boolean/gdml_private/J1
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO OCC26018 Windows: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et5_401-ta6156.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J2
Normal file
2
tests/boolean/gdml_private/J2
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6158.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J3
Normal file
2
tests/boolean/gdml_private/J3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6159.prt.2.gdml.tcl]
|
||||
|
4
tests/boolean/gdml_private/J4
Normal file
4
tests/boolean/gdml_private/J4
Normal file
@ -0,0 +1,4 @@
|
||||
puts "TODO OCC26018 Windows: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO ?OCC26017 Debian60-64: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et5_401-ta6160.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J5
Normal file
2
tests/boolean/gdml_private/J5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6161.prt.2.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/J6
Normal file
3
tests/boolean/gdml_private/J6
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et5_401-ta6162.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J7
Normal file
2
tests/boolean/gdml_private/J7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6164.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J8
Normal file
2
tests/boolean/gdml_private/J8
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et5_401-ta6277.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/J9
Normal file
2
tests/boolean/gdml_private/J9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6066.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/K1
Normal file
2
tests/boolean/gdml_private/K1
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6067.prt.3.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/K2
Normal file
3
tests/boolean/gdml_private/K2
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO OCC26018 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et6_401-ta6068.prt.3.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/K3
Normal file
2
tests/boolean/gdml_private/K3
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6069.prt.3.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/K4
Normal file
3
tests/boolean/gdml_private/K4
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO OCC26018 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et6_401-ta6070.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/K5
Normal file
2
tests/boolean/gdml_private/K5
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6071.prt.2.gdml.tcl]
|
||||
|
3
tests/boolean/gdml_private/K6
Normal file
3
tests/boolean/gdml_private/K6
Normal file
@ -0,0 +1,3 @@
|
||||
puts "TODO OCC26018 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et6_401-ta6072.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/K7
Normal file
2
tests/boolean/gdml_private/K7
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6073.prt.2.gdml.tcl]
|
||||
|
9
tests/boolean/gdml_private/K8
Normal file
9
tests/boolean/gdml_private/K8
Normal file
@ -0,0 +1,9 @@
|
||||
# ? - because sometimes test is killed by elapsed time
|
||||
|
||||
puts "TODO ?OCC26017 Debian60-64: \\*\\* Exception"
|
||||
puts "TODO ?OCC26017 Debian60-64: An exception was caught"
|
||||
puts "TODO ?OCC26017 ALL: TEST INCOMPLETE"
|
||||
puts "TODO ?OCC26017 ALL: Process killed by CPU limit"
|
||||
puts "TODO ?OCC26017 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
source [locate_data_file 20000_et6_401-ta6074.prt.2.gdml.tcl]
|
||||
|
2
tests/boolean/gdml_private/K9
Normal file
2
tests/boolean/gdml_private/K9
Normal file
@ -0,0 +1,2 @@
|
||||
source [locate_data_file 20000_et6_401-ta6075.prt.2.gdml.tcl]
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user