mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-21502 Adds status checks to test to prevent segementation fault when
test runs with ICU stub data only. ICU-21502 Review comments worked in.
This commit is contained in:
parent
aa9f5bc279
commit
0a1352ee67
1 changed files with 16 additions and 0 deletions
|
@ -708,10 +708,26 @@ void UnitsTest::testComplexUnitsConverterSorting() {
|
|||
|
||||
for (const auto &testCase : testCases) {
|
||||
MeasureUnitImpl inputImpl = MeasureUnitImpl::forIdentifier(testCase.input, status);
|
||||
if (status.errIfFailureAndReset()) {
|
||||
continue;
|
||||
}
|
||||
MeasureUnitImpl outputImpl = MeasureUnitImpl::forIdentifier(testCase.output, status);
|
||||
if (status.errIfFailureAndReset()) {
|
||||
continue;
|
||||
}
|
||||
ComplexUnitsConverter converter(inputImpl, outputImpl, conversionRates, status);
|
||||
if (status.errIfFailureAndReset()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
auto actual = converter.convert(testCase.inputValue, nullptr, status);
|
||||
if (status.errIfFailureAndReset()) {
|
||||
continue;
|
||||
}
|
||||
if (actual.length() < testCase.expectedCount) {
|
||||
errln("converter.convert(...) returned too few Measures");
|
||||
continue;
|
||||
}
|
||||
|
||||
for (int i = 0; i < testCase.expectedCount; i++) {
|
||||
assertEquals(testCase.msg, testCase.expected[i].getUnit().getIdentifier(),
|
||||
|
|
Loading…
Add table
Reference in a new issue