CASMTRIAGE-7079: Paradise: Fixed functional hardware test to pass processor types of "FPGA" #155
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.
Summary and Scope
Hardare tavern test was failing when run against Paradise. Paradise includes a new processor type "FPGA" that was not expected by the test. The change here is to add "FPGA" as a valid processor type. This was not hit previously because the tavern tests do not test against each node type on a system. Node selection is random, and we got unlucky that no Paradise node had been previously chosen.
Issues and Related PRs
master
(ie. 1.6)Testing
Tested on:
tyr
Test description:
Made a temporary change to the test_hardware.tavern.yaml file:
- url: "{hsm_base_url}/hsm/v2/State/Components?type=Node"
+ url: "{hsm_base_url}/hsm/v2/State/Components?type=Node&id=x3000c0s33b2n0"
This ensured the test was run against a Paradise node. The test then passed. I removed this code change before making the final PR.
Pull Request Checklist