Skip to content

Commit 51b0359

Browse files
committed
Identifiers
1 parent 6fd4600 commit 51b0359

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

include/vcpkg/base/message-data.inc.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -483,10 +483,6 @@ DECLARE_MESSAGE(CiBaselineRegressionHeader,
483483
(),
484484
"Printed before a series of CiBaselineRegression and/or CiBaselineUnexpectedPass messages.",
485485
"REGRESSIONS:")
486-
DECLARE_MESSAGE(CiBaselineUnexpectedCascadePass,
487-
(msg::spec, msg::triplet),
488-
"",
489-
"REGRESSION: {spec} is marked as pass but one dependency is not supported for {triplet}.")
490486
DECLARE_MESSAGE(CiBaselineUnexpectedFail,
491487
(msg::spec, msg::triplet),
492488
"",
@@ -495,14 +491,18 @@ DECLARE_MESSAGE(CiBaselineUnexpectedFailCascade,
495491
(msg::spec, msg::triplet),
496492
"",
497493
"REGRESSION: {spec} is marked as fail but one dependency is not supported for {triplet}.")
498-
DECLARE_MESSAGE(CiBaselineUnexpectedFailPass,
499-
(msg::spec, msg::triplet),
500-
"",
501-
"REGRESSION: {spec} is marked as pass but not supported for {triplet}.")
502494
DECLARE_MESSAGE(CiBaselineUnexpectedPass,
503495
(msg::spec, msg::path),
504496
"",
505497
"PASSING, REMOVE FROM FAIL LIST: {spec} ({path}).")
498+
DECLARE_MESSAGE(CiBaselineUnexpectedPassCascade,
499+
(msg::spec, msg::triplet),
500+
"",
501+
"REGRESSION: {spec} is marked as pass but one dependency is not supported for {triplet}.")
502+
DECLARE_MESSAGE(CiBaselineUnexpectedPassUnsupported,
503+
(msg::spec, msg::triplet),
504+
"",
505+
"REGRESSION: {spec} is marked as pass but not supported for {triplet}.")
506506
DECLARE_MESSAGE(CISettingsOptCIBase,
507507
(),
508508
"",

locales/messages.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,16 +305,16 @@
305305
"_CiBaselineRegressionHeader.comment": "Printed before a series of CiBaselineRegression and/or CiBaselineUnexpectedPass messages.",
306306
"CiBaselineRegressionNoPath": "REGRESSION: {spec} failed with {build_result}.",
307307
"_CiBaselineRegressionNoPath.comment": "An example of {spec} is zlib:x64-windows. An example of {build_result} is One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED).",
308-
"CiBaselineUnexpectedCascadePass": "REGRESSION: {spec} is marked as pass but one dependency is not supported for {triplet}.",
309-
"_CiBaselineUnexpectedCascadePass.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
310308
"CiBaselineUnexpectedFail": "REGRESSION: {spec} is marked as fail but not supported for {triplet}.",
311309
"_CiBaselineUnexpectedFail.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
312310
"CiBaselineUnexpectedFailCascade": "REGRESSION: {spec} is marked as fail but one dependency is not supported for {triplet}.",
313311
"_CiBaselineUnexpectedFailCascade.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
314-
"CiBaselineUnexpectedFailPass": "REGRESSION: {spec} is marked as pass but not supported for {triplet}.",
315-
"_CiBaselineUnexpectedFailPass.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
316312
"CiBaselineUnexpectedPass": "PASSING, REMOVE FROM FAIL LIST: {spec} ({path}).",
317313
"_CiBaselineUnexpectedPass.comment": "An example of {spec} is zlib:x64-windows. An example of {path} is /foo/bar.",
314+
"CiBaselineUnexpectedPassCascade": "REGRESSION: {spec} is marked as pass but one dependency is not supported for {triplet}.",
315+
"_CiBaselineUnexpectedPassCascade.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
316+
"CiBaselineUnexpectedPassUnsupported": "REGRESSION: {spec} is marked as pass but not supported for {triplet}.",
317+
"_CiBaselineUnexpectedPassUnsupported.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
318318
"ClearingContents": "Clearing contents of {path}",
319319
"_ClearingContents.comment": "An example of {path} is /foo/bar.",
320320
"CmakeTargetsExcluded": "{count} additional targets are not displayed.",

src/vcpkg/commands.ci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ namespace vcpkg
420420
else if (cidata.required_success.contains(spec.package_spec))
421421
{
422422
not_supported_regressions
423-
.append(supp ? msgCiBaselineUnexpectedCascadePass : msgCiBaselineUnexpectedFailPass,
423+
.append(supp ? msgCiBaselineUnexpectedPassCascade : msgCiBaselineUnexpectedPassUnsupported,
424424
msg::spec = spec.package_spec,
425425
msg::triplet = spec.package_spec.triplet())
426426
.append_raw('\n');

0 commit comments

Comments
 (0)