Skip to content
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

Move the manipulation trigger for glue:R0036_0 #126

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- biceps:R0034_0 does not track changes when reinserting descriptors.
- report duplication issue in biceps:C11-C15, biceps:C5, biceps:R5046_0, biceps:B-284_0 as well as biceps:R5003.
- biceps:5-4-7 tests confusing changes made by SetComponentActivation manipulations with changes made by SetMetricStatus.
- glue:R0036_0 test can be blocked by long-running t2iapi RPCs.

## [7.0.1] - 2023-03-17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ private void triggerReportAndIntentionallyFailReceivingIt(final ReportTestData t
LOG.info("Triggering a Report and intentionally causing a failure...");
triggerableReport.setReportReceived(false);
triggerableReport.setFailOnReceivingReport(true);
triggerableReport.trigger();
synchronized (triggerableReport.getSyncPoint()) {
triggerableReport.trigger();
final long timeout = System.nanoTime() + TIMEOUT_NANOS;
while (!triggerableReport.getReportReceived() && System.nanoTime() < timeout) {
try {
Expand Down
Loading