mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Test for handles is updated according to behavior expected from modern compilers. Performance test perf ncollection A1 is updated (valid range extended) according to measurements made on Debian 8 with GCC 4.9 and on Ubuntu 16.04 with CLang 3.8 and 6.0 and GCC 4.7, 4.9, and 5.0.
66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
cpulimit 5000
|
|
pload QAcommands
|
|
|
|
set info [QANTestNCollectionPerformance]
|
|
|
|
set values {}
|
|
set keys {}
|
|
unset -nocomplain std_cl occt_cl diff_cl
|
|
foreach line [split $info "\n"] {
|
|
if { [regexp {(std::.*)} $line] } {
|
|
lappend keys $line
|
|
if {[info exists std_cl] && [info exists occt_cl] && [info exists diff_cl]} {
|
|
lappend values "$diff_cl"
|
|
}
|
|
}
|
|
regexp {\s*[-0-9*.+eE]+\s+([-0-9*.+eE]+)\s+([-0-9*.+eE]+)\s+([-0-9*.+eE]+)} $line dump std_cl occt_cl diff_cl
|
|
}
|
|
lappend values "$diff_cl"
|
|
|
|
if { [checkplatform -windows] } {
|
|
set check_values { 1.383409071179103
|
|
5.1472531605899908
|
|
5.55719377028335395
|
|
5.5309830187022213
|
|
1.58734859347377246
|
|
1.18885181806915312
|
|
1.4285334583511072
|
|
0.20619280354776386
|
|
0.21983563611646603
|
|
}
|
|
if { [regexp {64} [dversion]] } {
|
|
set check_values { 1.5
|
|
5.2
|
|
5.7
|
|
5.7
|
|
1.7
|
|
1.3
|
|
1.6
|
|
0.4
|
|
0.4
|
|
}
|
|
}
|
|
} else {
|
|
set check_values { 1.2363286058767904
|
|
5.0
|
|
1.5596260162601621
|
|
7.0
|
|
1.2133020329576465
|
|
1.2164522569168656
|
|
1.2495457282327385
|
|
0.2
|
|
0.45175659293697572
|
|
}
|
|
}
|
|
|
|
set index 0
|
|
foreach key $keys {
|
|
set value [lindex $values $index]
|
|
if { $value > [lindex $check_values $index] } {
|
|
puts "Error: performance of $key become worse than before"
|
|
} else {
|
|
puts "OK: performance of $key is within expected limits"
|
|
}
|
|
incr index
|
|
}
|