1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023423: Test system does not get log if DRAW crashes or gets killed

Avoid using dlog in grid tests (command testgrid), in order to get some output even if DRAW crashes.
Command test now accepts argument echo to get echo immediately (but no log processing).
Test case for checking log processing in case of premature exit of DRAW is added (demo testsystem premature_exit).
This commit is contained in:
abv 2012-09-07 12:33:12 +04:00
parent 0e26a4d0bf
commit 5df3a117e1
3 changed files with 35 additions and 18 deletions

View File

@ -33,22 +33,22 @@ set _test_case_regexp {^CASE\s+([\w.-]+)\s+([\w.-]+)\s+([\w.-]+)\s*:\s*([\w]+)(.
# Basic command to run indicated test case in DRAW # Basic command to run indicated test case in DRAW
help test {Run specified test case help test {Run specified test case
Use: test group grid casename [verbose_level] Use: test group grid casename [echo=0]
Verbose level is 0 by default; can be set to 1 or 2} - If echo is set to 0 (default), log is stored in memory and only summary
proc test {group grid casename {verbose {}}} { is output (the log can be obtained with command \'dlog get\')
global _tests_verbose - If echo is set to 1, all commands and results are echoed immediately,
if { $verbose != "" } { thus log is not saved and summary is not produced}
set _tests_verbose $verbose proc test {group grid casename {echo 0}} {
}
# get test case paths (will raise error if input is invalid) # get test case paths (will raise error if input is invalid)
_get_test $group $grid $casename dir gridname casefile _get_test $group $grid $casename dir gridname casefile
# run test # run test
uplevel _run_test $dir $group $gridname $casefile uplevel _run_test $dir $group $gridname $casefile $echo
# check log # check log
if { ! $echo } {
_check_log $dir $group $gridname $casename [dlog get] _check_log $dir $group $gridname $casename [dlog get]
}
return return
} }
@ -90,7 +90,7 @@ proc testgrid {logdir args} {
if { $narg < [llength $args] } { if { $narg < [llength $args] } {
set parallel [expr [lindex $args $narg]] set parallel [expr [lindex $args $narg]]
} else { } else {
set paralell 2 set parallel 2
} }
continue continue
} }
@ -311,8 +311,10 @@ proc testgrid {logdir args} {
set fd_cmd [open $logdir/$group/$grid/${casename}.tcl w] set fd_cmd [open $logdir/$group/$grid/${casename}.tcl w]
puts $fd_cmd "$imgdir_cmd" puts $fd_cmd "$imgdir_cmd"
puts $fd_cmd "set test_image $casename" puts $fd_cmd "set test_image $casename"
puts $fd_cmd "_run_test $dir $group $grid $casefile" puts $fd_cmd "_run_test $dir $group $grid $casefile 1"
# use dlog command to obtain complete output of the test when it is absent (i.e. since OCCT 6.6.0) # use dlog command to obtain complete output of the test when it is absent (i.e. since OCCT 6.6.0)
# note: this is not needed if echo is set to 1 in call to _run_test above
if { ! [catch {dlog get}] } { if { ! [catch {dlog get}] } {
puts $fd_cmd "puts \[dlog get\]" puts $fd_cmd "puts \[dlog get\]"
} else { } else {
@ -321,6 +323,7 @@ proc testgrid {logdir args} {
set env(QA_DUP) 1 set env(QA_DUP) 1
set env(QA_print_command) 1 set env(QA_print_command) 1
} }
# final 'exit' is needed when running on Linux under VirtualGl # final 'exit' is needed when running on Linux under VirtualGl
puts $fd_cmd "exit" puts $fd_cmd "exit"
close $fd_cmd close $fd_cmd
@ -568,7 +571,7 @@ proc _get_test {group grid casename _dir _gridname _casefile} {
# Internal procedure to run test case indicated by base directory, # Internal procedure to run test case indicated by base directory,
# grid and grid names, and test case file path. # grid and grid names, and test case file path.
# The log can be obtained by command "dlog get". # The log can be obtained by command "dlog get".
proc _run_test {scriptsdir group gridname casefile} { proc _run_test {scriptsdir group gridname casefile echo} {
global env global env
# start timer # start timer
@ -579,6 +582,8 @@ proc _run_test {scriptsdir group gridname casefile} {
set dlog_exists 1 set dlog_exists 1
if { [catch {dlog reset}] } { if { [catch {dlog reset}] } {
set dlog_exists 0 set dlog_exists 0
} elseif { $echo } {
decho on
} else { } else {
dlog reset dlog reset
dlog on dlog on
@ -635,10 +640,14 @@ proc _run_test {scriptsdir group gridname casefile} {
# stop logging # stop logging
if { $dlog_exists } { if { $dlog_exists } {
if { $echo } {
decho off
} else {
rename puts {} rename puts {}
rename puts-saved puts rename puts-saved puts
dlog off dlog off
} }
}
# stop cpulimit killer if armed by the test # stop cpulimit killer if armed by the test
cpulimit cpulimit
@ -647,7 +656,7 @@ proc _run_test {scriptsdir group gridname casefile} {
uplevel dchrono _timer stop uplevel dchrono _timer stop
set time [uplevel dchrono _timer show] set time [uplevel dchrono _timer show]
if [regexp -nocase {CPU user time:[ \t]*([0-9.e-]+)} $time res cpu] { if [regexp -nocase {CPU user time:[ \t]*([0-9.e-]+)} $time res cpu] {
if { $dlog_exists } { if { $dlog_exists && ! $echo } {
dlog add "TOTAL CPU TIME: $cpu sec" dlog add "TOTAL CPU TIME: $cpu sec"
} else { } else {
puts "TOTAL CPU TIME: $cpu sec" puts "TOTAL CPU TIME: $cpu sec"

View File

@ -2,5 +2,5 @@
# and test the test system itself # and test the test system itself
001 testsystem 001 testsystem
002 empty_grid 002 draw
003 samples 003 samples

View File

@ -0,0 +1,8 @@
# this test is to check that test system is able to get and process log
# of the test execution even if DRAW is exited prematurely (crashes or gets
# killed)
puts "TEST COMPLETED"
# simulate crash
exit