-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[Impeller] attempt to get validation errors from CI unittests. #51341
Merged
Merged
Changes from 40 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
f86860c
testing.
jonahwilliams e06c9c9
make fatal
jonahwilliams dcd1c5e
Add validation layers to deps?
jonahwilliams 29c7edc
more validation
jonahwilliams 408e7f5
more cleanups
jonahwilliams be3271b
start with test skips.
jonahwilliams 43e202a
++
jonahwilliams 1c05893
++
jonahwilliams 1cecd26
add back gles flag.
jonahwilliams d72221b
add more skips.
jonahwilliams fd68de3
++
jonahwilliams a453f7f
++
jonahwilliams ab9a072
more skips.
jonahwilliams 26dc17f
++
jonahwilliams 4e2eeac
++
jonahwilliams 2cf6407
++
jonahwilliams 79231ec
++
jonahwilliams 9e378b1
++
jonahwilliams b8bcfcb
++
jonahwilliams f3ee710
++
jonahwilliams eea1bce
more fixes
jonahwilliams 7917811
point field fixes.
jonahwilliams fb6e3ee
++
jonahwilliams b7031ba
make skips actually work.
jonahwilliams a38397f
fix gaussians.
jonahwilliams de0fa35
fix validation disable
jonahwilliams 2d6fdfb
more skips.
jonahwilliams c7f4b80
++
jonahwilliams dfa2b37
update linux builders.
jonahwilliams dfd121f
add vvl config to impeller unittests for linux.
jonahwilliams a8f9e41
++
jonahwilliams 1a2b88d
++
jonahwilliams 7b6514c
cleanups.
jonahwilliams bf9d430
++
jonahwilliams 50fcdde
merge dictionaries.
jonahwilliams 412912b
++
jonahwilliams 2cec37c
remove unused build_dir.
jonahwilliams 34ce5b6
++
jonahwilliams c53ff77
remove unused gn flag.
jonahwilliams 50cfa9d
Merge branch 'main' into turn_on_validation
jonahwilliams 3d105f0
more adjustments.
jonahwilliams File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally this would be a static function that returns
StatusOr<std::unique_ptr<PlaygroundImplVK>>
instead of short circuiting a constructor, leaving a half initialized object.https://google.github.io/styleguide/cppguide.html#Doing_Work_in_Constructors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can just lift the check out of the constructor, since its a static method. I made this an FML_CHECK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done