test/cgroups.bats: fix incorrect setup order. #5684
Merged
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.
Don't dereference $TESTDATA before the test case is set up. The incorrect setup order prevents
cgroups.batstests from being properly isolated from each other, causing very often
localintegrationcgroups tests to fail in github workflows or OpenShift CI.What type of PR is this?
/kind ci
What this PR does / why we need it:
Don't dereference $TESTDATA before the test case is set up.
Doing otherwise breaks proper isolation of test cases. This
manifests itself in many ways, since concurrently cgroups
BATS tests can now interfere with each other when mangling
test input data. The most typical symptom is the expected
memory limit being incorrect in one of the test cases like
this:
Which issue(s) this PR fixes:
None
Special notes for your reviewer:
Like the BATS installation fixing bits, this one was also split out from #5596,
so we can merge it ASAP without the remaining other a bit more problematic
bits there.
Does this PR introduce a user-facing change?