Closed
Description
Currently, librustdoc
is diligently passing test arguments to libtest
via --test-args
, including --nocapture
. However, librustdoc
internally captures the output of doc-tests and doesn’t let it get through to libtest
. Consequently, the usage of --nocapture
in this context is somewhat limited (when supplied it reveals compiler warnings, for instance) and doesn’t serve its main purpose. This behavior is inconsistent with the rest of the testing.
Regards,
Ivan