Add tests for empty RelationTable
As the title says, the MR adds a test for empty RelationTable.
Closes #528 (closed)
Merge request reports
Activity
assigned to @tfulghes
requested review from @graven
added RTA label
- Resolved by Sebastien Ponce
/ci-test --without-downstream
added ci-test-triggered label
- [2023-12-21 08:37] Validation started with lhcb-master-mr#9990
- [2024-01-11 08:20] Validation started with lhcb-master-mr#10068
Edited by Software for LHCbNote that with 'additional test' I really intended for two things -- one a unit test, which this MR adds, and the other one a test in code such as here which passes a range from
next(begin(range))
toend(range)
and which thus will not terminate in casebegin(range) == end(range)
(as one cannot reachend(range)
fromnext(begin(range))
and hence it will probably generate a SEGV at some point (at best). So I would really want anif (begin(range)==end(range))
somewhere in this code prior to usingnext(begin(range))
and*begin(range)
.- Resolved by Sebastien Ponce
/ci-test
assigned to @sponce
mentioned in commit c790db5b
mentioned in issue Moore#688 (closed)