-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Cluster conformance checker script #29895
Merged
mergify
merged 6 commits into
project-chip:master
from
cecille:poc_conformance_checking_from_dm_tools
Oct 26, 2023
Merged
Cluster conformance checker script #29895
mergify
merged 6 commits into
project-chip:master
from
cecille:poc_conformance_checking_from_dm_tools
Oct 26, 2023
Conversation
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 script parses the Data Model XML conformance tags into conformance checking functions and uses them to conformance check devices based on the supplied feature, command and attribute global values. This script does NOT yet perform choice conformance checks. This script currently WILL NOT fail on conformance errors because we have conformance errors in our example apps and we want to be able to run this in CI with the other device composition tests. The test failure mode will be turned on once the conformance issues are fixed.
PR #29895: Size comparison from 2f612b0 to f0541a3 Full report (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #29895: Size comparison from 2f612b0 to 6467b9a Increases (11 builds for cc32xx, esp32, linux, nrfconnect, psoc6, telink)
Decreases (12 builds for cc13x4_26x4, cc32xx, cyw30739, efr32, linux, mbed, psoc6, telink)
Full report (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
andy31415
reviewed
Oct 23, 2023
andy31415
reviewed
Oct 23, 2023
andy31415
reviewed
Oct 23, 2023
andy31415
reviewed
Oct 23, 2023
andy31415
approved these changes
Oct 23, 2023
andy31415
reviewed
Oct 23, 2023
woody-apple
approved these changes
Oct 23, 2023
tehampson
reviewed
Oct 23, 2023
PR #29895: Size comparison from 2f612b0 to 335b612 Increases above 0.2%:
Increases (35 builds for bl702, cc13x4_26x4, cc32xx, cyw30739, esp32, k32w, linux, nrfconnect, psoc6, qpg, telink)
Decreases (17 builds for bl702, bl702l, cc32xx, efr32, linux, mbed, psoc6, telink)
Full report (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
tehampson
approved these changes
Oct 24, 2023
cecille
added a commit
to cecille/connectedhomeip
that referenced
this pull request
Oct 26, 2023
This reverts commit f0b5c68.
andy31415
pushed a commit
that referenced
this pull request
Oct 26, 2023
cecille
added a commit
to cecille/connectedhomeip
that referenced
this pull request
Oct 27, 2023
This reverts commit 8140975.
shripad621git
pushed a commit
to shripad621git/connectedhomeip
that referenced
this pull request
Oct 31, 2023
* Cluster conformance checker script This script parses the Data Model XML conformance tags into conformance checking functions and uses them to conformance check devices based on the supplied feature, command and attribute global values. This script does NOT yet perform choice conformance checks. This script currently WILL NOT fail on conformance errors because we have conformance errors in our example apps and we want to be able to run this in CI with the other device composition tests. The test failure mode will be turned on once the conformance issues are fixed. * Fix lint errors * Restyled by autopep8 * Remove accidentally added files * Address review comments * Add new test to CI --------- Co-authored-by: Restyled.io <commits@restyled.io>
shripad621git
pushed a commit
to shripad621git/connectedhomeip
that referenced
this pull request
Oct 31, 2023
…ject-chip#30037) This reverts commit f0b5c68.
shripad621git
pushed a commit
to shripad621git/connectedhomeip
that referenced
this pull request
Oct 31, 2023
* Reapply "Cluster conformance checker script (project-chip#29895)" This reverts commit 8140975. * More resiliance to mismatches in spec * Restyled by isort --------- Co-authored-by: Restyled.io <commits@restyled.io>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 script parses the Data Model XML conformance tags into conformance checking functions and uses them to conformance check devices based on the supplied feature, command and attribute global values.
This script does NOT yet perform choice conformance checks.
This script currently WILL NOT fail on conformance errors because we have conformance errors in our example apps and we want to be able to run this in CI with the other device composition tests. The test failure mode will be turned on once the conformance issues are fixed.