Unverified Commit 1be29606 authored by Andy Pan's avatar Andy Pan Committed by GitHub
Browse files

Fix sentinel FD leak test, not printing the list of leaks (#8363)

parent fb66e2e2
...@@ -422,7 +422,7 @@ proc end_tests {} { ...@@ -422,7 +422,7 @@ proc end_tests {} {
set sentinel_fd_leaks_file "sentinel_fd_leaks" set sentinel_fd_leaks_file "sentinel_fd_leaks"
if { [file exists $sentinel_fd_leaks_file] } { if { [file exists $sentinel_fd_leaks_file] } {
puts [colorstr red "WARNING: sentinel test(s) failed, there are leaked fds in sentinel:"] puts [colorstr red "WARNING: sentinel test(s) failed, there are leaked fds in sentinel:"]
exec cat $sentinel_fd_leaks_file puts [exec cat $sentinel_fd_leaks_file]
exit 1 exit 1
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment