Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a test that requests all features and maximum limits. This should be the default test for the majority of tests, otherwise optional features will not be tested. The exceptions are only tests that explicitly test the absence of a feature or specific limits such as the tests under validation/capability_checks.
As a concrete example to demonstrate the issue, texture format
rg11b10ufloat
is optionally renderable and can optionally be used multisampled. Any test that tests texture formats should test this format, skipping only if the feature is missing. So, the default should be that the test testskAllTextureFormats
with the appropriate filters from format_info.ts or the various helpers. This way,rg11b10ufloat
will included in the test and fail if not appropriately filtered. If instead you were to use GPUTest thenrg11b10ufloat
would just be skipped as its never enabled. You could enable it manually but that spreads enabling to every test instead of being centralized in one place, here.Honestly, I'd prefer to rename
GPUTest
toSpecialGPUTest
or possibly evenDeprecatedGPUTest
it clear not to use it and where it needs to be fixed and then name thisGPUTest
. But, we can do that later. For now, I just effectively replacedMaxLimitsTestMixin
withAllFeaturesMaxLimitsGPUTest
in the places where it could easily be replaced.The remaining places bring up an issue. All of them are based on
ValidationTest
. I think the same rules apply. For example, if we're validating that textures fail validation for certain reasons we should be checking formats that are optional also pass the same validation rules. The simplest way to do that would be to makeValidationTest
inherit fromAllFeaturesMaxLimitsGPUTest
.Unfortunately, the capability_checks/* are all based off
ValidationTest
so they need to be moved to something else before we can make that change.Issue: #4178
Requirements for PR author:
.unimplemented()
./** documented */
and new helper files are found inhelper_index.txt
.Requirements for reviewer sign-off:
When landing this PR, be sure to make any necessary issue status updates.