This is an archive of the discontinued LLVM Phabricator instance.

[llvm][lit] Respect GTEST_TOTAL_SHARDS and GTEST_SHARD_INDEX env vars
ClosedPublic

Authored by jloser on Sep 8 2022, 5:04 PM.

Details

Summary

There are a variety of issues with using GTest sharding by default for users of
lit using the Google Test formatter as mentioned in
https://github.com/llvm/llvm-project/issues/56492 and
https://github.com/llvm/llvm-project/issues/56491.

Currently, there is no way for users to explicitly control the sharding
behavior, even with the environment variables that GTest provides. This patch
teaches the googletest formatter to actually respect GTEST_TOTAL_SHARDS
and GTEST_SHARD_INDEX environment variables if they are set.

In practice, we could go one step further and not do any of the post-processing
of the JSON files if GTEST_TOTAL_SHARDS is 1 for example, but that it left
as a follow-up if desired. There may be preferred alternative approaches to
disabling sharding entirely through another mechanism, such as a lit config
variable.

Diff Detail

Event Timeline

jloser created this revision.Sep 8 2022, 5:04 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 8 2022, 5:04 PM
jloser requested review of this revision.Sep 8 2022, 5:04 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 8 2022, 5:04 PM
ychen added a comment.Sep 8 2022, 5:48 PM

Looks good. I think this is useful to discover whether tests are affecting each other or to disable sharding if the platform has trouble correctly emitting & parsing the GTest JSON result file (like the Github issues you mentioned). On a side note, if you think the LIT sharding implementation is buggy, it is better to submit a bug report.

Could you please add a test? Thanks.

llvm/utils/lit/lit/formats/googletest.py
115–116

use os.environ.get()

jloser updated this revision to Diff 459169.Sep 9 2022, 12:45 PM

Add test and use os.environ.get

Looks good. I think this is useful to discover whether tests are affecting each other or to disable sharding if the platform has trouble correctly emitting & parsing the GTest JSON result file (like the Github issues you mentioned). On a side note, if you think the LIT sharding implementation is buggy, it is better to submit a bug report.

Could you please add a test? Thanks.

Just added a test! Let me know if you see a way to simplify it — I'm new to using FileCheck tests, so I just created a new directory so the environment variables wouldn't conflict with the other test in googletest-format.py. Thanks!

As to the use cases that this patch enables, I want to disable sharding downstream since we're seeing some issues with emitting malformed JSON files that the issues I linked mentioned. If I come across any bugs in the lit sharding itself, I will certainly file GitHub issues.

llvm/utils/lit/lit/formats/googletest.py
115–116

Fixed!

jloser marked an inline comment as done.Sep 9 2022, 12:48 PM
ychen accepted this revision.Sep 9 2022, 4:04 PM

LGTM

llvm/utils/lit/tests/googletest-format-respect-gtest-sharding-env-vars.py
5–6
This revision is now accepted and ready to land.Sep 9 2022, 4:04 PM
This revision was landed with ongoing or failed builds.Sep 9 2022, 4:48 PM
This revision was automatically updated to reflect the committed changes.
jloser marked an inline comment as done.Sep 9 2022, 4:48 PM
jloser added inline comments.
llvm/utils/lit/tests/googletest-format-respect-gtest-sharding-env-vars.py
5–6

Thanks, I fixed this before landing it.