Closed imlk0 closed 2 years ago
This commit fix a deadlock in unit test. The root cause of deadlocks is the use of fork() in a multi-threaded test environment.
fork()
By setting --test-threads=1 the deadlock can be avoided .
--test-threads=1
This commit fix a deadlock in unit test. The root cause of deadlocks is the use of
fork()
in a multi-threaded test environment.By setting
--test-threads=1
the deadlock can be avoided .