regression
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
15c59e7527
commit
6fd319474f
|
|
@ -522,15 +522,11 @@ proc show_summary {} {
|
||||||
if { $valgrind_shared_lib_failure } {
|
if { $valgrind_shared_lib_failure } {
|
||||||
puts "WARNING: valgrind failed because the executable is not statically linked."
|
puts "WARNING: valgrind failed because the executable is not statically linked."
|
||||||
}
|
}
|
||||||
puts "See $result_dir for log files"
|
|
||||||
set test_count [llength $tests]
|
set test_count [llength $tests]
|
||||||
if { [found_errors] } {
|
if { [found_errors] } {
|
||||||
if { $errors(error) != 0 } {
|
if { $errors(error) != 0 } {
|
||||||
puts "Errored $errors(error)/$test_count"
|
puts "Errored $errors(error)/$test_count"
|
||||||
}
|
}
|
||||||
if { $errors(fail) != 0 } {
|
|
||||||
puts "Failed $errors(fail)/$test_count"
|
|
||||||
}
|
|
||||||
if { $errors(leak) != 0 } {
|
if { $errors(leak) != 0 } {
|
||||||
puts "Memory leaks in $errors(leak)/$test_count"
|
puts "Memory leaks in $errors(leak)/$test_count"
|
||||||
}
|
}
|
||||||
|
|
@ -544,7 +540,7 @@ proc show_summary {} {
|
||||||
puts "No cmd tcl file for $errors(no_cmd)/$test_count"
|
puts "No cmd tcl file for $errors(no_cmd)/$test_count"
|
||||||
}
|
}
|
||||||
if { $errors(fail) != 0 } {
|
if { $errors(fail) != 0 } {
|
||||||
puts "See $diff_file for differences"
|
puts "Failed $errors(fail)/$test_count"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
puts "Passed $test_count"
|
puts "Passed $test_count"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue