RFR: 8319554: Select LogOutput* directly for stdout and stderr
Xin Liu
xliu at openjdk.org
Wed Nov 8 19:01:58 UTC 2023
On Wed, 8 Nov 2023 10:03:54 GMT, Johan Sjölen <jsjolen at openjdk.org> wrote:
> Just a couple of style issues. Why do you expect this to fix the flaky failures? Is it specifically configuring the logging that fails?
That's only my speculation. I feel that we may occasionally fail to execute the following configuration. Maybe it returns false when the memory budget is tight. this patch reduce the memory requirement for stdout/stderr.
set_log_config("stdout", "logging=debug")
set_log_config("stderr", "logging=debug")
In the logs provided by David Holmes, we actually can see "header".
It means that stdout/stderr streams are fine. gtest successfully captures and writes the contents to file. We didn't check the return value of set_log_config. I want to proceed to test only when set_log_config() is true.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/16543#issuecomment-1802477500
More information about the hotspot-runtime-dev
mailing list