Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Record GPU usage environment variable #447

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions grizzly/common/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,8 @@ def _submit_report(
quality = Quality.UNREDUCED
if test_cases[0].env_vars:
# add environment variables to metadata
self.add_extra_metadata(
"recorded_envvars",
" ".join("=".join(kv) for kv in test_cases[0].env_vars.items()),
report.crash_info.configuration.addEnvironmentVariables(
test_cases[0].env_vars
)
else:
quality = Quality.NO_TESTCASE
Expand Down
1 change: 1 addition & 0 deletions grizzly/target/puppet_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class PuppetTarget(Target):
"GNOME_ACCESSIBILITY",
"MOZ_CHAOSMODE",
"MOZ_FUZZ_CRASH_ON_LARGE_ALLOC",
"MOZ_FUZZ_HAS_GPU",
"MOZ_FUZZ_LARGE_ALLOC_LIMIT",
"XPCOM_DEBUG_BREAK",
)
Expand Down
Loading