Commit 36795b7
Fix retry-marker tooling breakages surfaced by CI
Three independent defects from the retry-marker work were failing pipeline
115477619 (98/377 tasks):
- RetryMarkerListener used System.err, violating forbiddenApis and failing
:utils:junit-utils:forbiddenApisMain (check_base). Drop the log; the marker
write is best-effort and must not fail the test run.
- The `dd.test.results.dir` system property set on every Test task tripped
DDSpecification's strict system-property hygiene check (no non-allow-listed
`dd.*`), turning every Spock spec into an initializationError. Move it out of
the agent's product-config namespace to `datadog.test.results.dir`.
- JUnitReport.java used LinkedHashSet without importing it, breaking
collect_results.sh in after_script (non-fatal, but result/marker collection
silently produced nothing). Add the missing import.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 24cccd2 commit 36795b7
3 files changed
Lines changed: 13 additions & 3 deletions
File tree
- .gitlab/collect-result
- buildSrc/src/main/kotlin
- utils/junit-utils/src/main/java/datadog/trace/junit/utils/retry
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
7 | 8 | | |
8 | 9 | | |
9 | 10 | | |
| |||
Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
53 | 56 | | |
54 | 57 | | |
55 | 58 | | |
| |||
Lines changed: 8 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
26 | 29 | | |
27 | 30 | | |
28 | 31 | | |
| |||
48 | 51 | | |
49 | 52 | | |
50 | 53 | | |
51 | | - | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
52 | 58 | | |
53 | 59 | | |
54 | 60 | | |
| |||
0 commit comments