When one runtime instance is running, another one can not be started at the same time.
The error message is:
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<hpx::exception> >' what(): bind: Address already in use: HPX(network_error)
This seems to indicate that the runtime is opening a server socket on a specific port and each instance following that tries to do the same on the same port and thus fails.
This issue prevents us to run multiple tests in parallel reliably during development.