1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
ski 863f782a42 0027146: Create command checkplatform
Command checkplatform was created.
All test cases were updated.

Global variable os_type was eliminated.
New option -osx (MacOS) for procedure checkplatform was added.
2016-04-08 11:42:00 +03:00

42 lines
1.0 KiB
Plaintext

pload QAcommands
set info [QANTestNCollectionIndexedDataMap]
set keys {}
set values {}
foreach line [split $info "\n"] {
set key [string trim [string range $line 0 [expr {[string first ":" $line] - 1}]]]
set value [string trim [string range $line [expr {[string first ":" $line] + 1}] [expr {[string length $line] - 1}]]]
if {[string length $key] != 0} {
if {[string length $value] != 0} {
lappend keys $key
lappend values $value
}
}
}
if { [checkplatform -windows] } {
set check_values { 0.017762852
0.008435507
0.018746851
0.079263713
}
} else {
set check_values { 0.1549615
0.1290805
0.1602191
0.3487175
}
}
set index 0
foreach key $keys {
set value [lindex $values $index]
if { $value > [lindex $check_values $index] } {
puts "ERROR: performance of $key become worse"
} else {
puts "OK: performance of $key is OK"
}
incr index
}