Skip to content

Commit

Permalink
- Attempt to fix some tests.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16287 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
perost committed Jun 10, 2013
1 parent e470147 commit 849bfba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Compiler/Util/Error.mo
Expand Up @@ -190,7 +190,7 @@ public constant Message UNDERDET_EQN_SYSTEM = MESSAGE(32, SYMBOLIC(), ERROR(),
public constant Message OVERDET_EQN_SYSTEM = MESSAGE(33, SYMBOLIC(), ERROR(),
Util.gettext("Too many equations, over-determined system. The model has %s equation(s) and %s variable(s)."));
public constant Message STRUCT_SINGULAR_SYSTEM = MESSAGE(34, SYMBOLIC(), ERROR(),
Util.gettext("Model is structurally singular, error found sorting equations \n %s for variables \n %s"));
Util.gettext("Model is structurally singular, error found sorting equations \n %s for variables \n %s."));
public constant Message UNSUPPORTED_LANGUAGE_FEATURE = MESSAGE(35, TRANSLATION(), ERROR(),
Util.gettext("The language feature %s is not supported. Suggested workaround: %s"));
public constant Message NON_EXISTING_DERIVATIVE = MESSAGE(36, SYMBOLIC(), ERROR(),
Expand Down Expand Up @@ -296,7 +296,7 @@ public constant Message INHERIT_BASIC_WITH_COMPS = MESSAGE(87, TRANSLATION(), ER
public constant Message MODIFIER_TYPE_MISMATCH_ERROR = MESSAGE(88, TRANSLATION(), ERROR(),
Util.gettext("Type mismatch in modifier of component %s, expected type %s, got modifier %s of type %s."));
public constant Message ERROR_FLATTENING = MESSAGE(89, TRANSLATION(), ERROR(),
Util.gettext("Error occurred while flattening model %s"));
Util.gettext("Error occurred while flattening model %s."));
public constant Message DUPLICATE_ELEMENTS_NOT_IDENTICAL = MESSAGE(90, TRANSLATION(), ERROR(),
Util.gettext("Duplicate elements (due to inherited elements) not identical:\n first element is: %s\n second element is: %s"));
public constant Message PACKAGE_VARIABLE_NOT_CONSTANT = MESSAGE(91, TRANSLATION(), ERROR(),
Expand Down Expand Up @@ -362,7 +362,7 @@ public constant Message HIGHER_VARIABILITY_BINDING = MESSAGE(129, TRANSLATION(),
public constant Message IF_EQUATION_WARNING = MESSAGE(131, SYMBOLIC(), WARNING(),
Util.gettext("If-equations are only partially supported. Ignoring %s."));
public constant Message IF_EQUATION_UNBALANCED_2 = MESSAGE(132, SYMBOLIC(), ERROR(),
Util.gettext("If-equation with conditions that are not parameter expressions must have the same number of equations in each branch, equation count is %s for each respective branch:\n%s"));
Util.gettext("If-equation with conditions that are not parameter expressions must have the same number of equations in each branch, equation count is %s for each respective branch:\n%s."));
public constant Message EQUATION_GENERIC_FAILURE = MESSAGE(133, TRANSLATION(), ERROR(),
Util.gettext("Failed to instantiate equation %s."));
public constant Message INST_PARTIAL_CLASS_CHECK_MODEL_WARNING = MESSAGE(134, TRANSLATION(), WARNING(),
Expand Down Expand Up @@ -396,15 +396,15 @@ public constant Message LOOKUP_FUNCTION_GOT_CLASS = MESSAGE(148, TRANSLATION(),
public constant Message NON_STREAM_OPERAND_IN_STREAM_OPERATOR = MESSAGE(149, TRANSLATION(), ERROR(),
Util.gettext("Operand %s to operator %s is not a stream variable."));
public constant Message UNBALANCED_CONNECTOR = MESSAGE(150, TRANSLATION(), WARNING(),
Util.gettext("Connector %s is not balanced: %s"));
Util.gettext("Connector %s is not balanced: %s."));
public constant Message RESTRICTION_VIOLATION = MESSAGE(151, TRANSLATION(), ERROR(),
Util.gettext("Restriction violation: %s is a %s, not a %s."));
public constant Message ZERO_STEP_IN_ARRAY_CONSTRUCTOR = MESSAGE(152, TRANSLATION(), ERROR(),
Util.gettext("Step equals 0 in array constructor %s."));
public constant Message RECURSIVE_SHORT_CLASS_DEFINITION = MESSAGE(153, TRANSLATION(), ERROR(),
Util.gettext("Recursive short class definition of %s in terms of %s."));
public constant Message FUNCTION_ELEMENT_WRONG_KIND = MESSAGE(155, TRANSLATION(), ERROR(),
Util.gettext("Element is not allowed in function context: %s."));
Util.gettext("Element is not allowed in function context: %s"));
public constant Message DUPLICATE_CLASSES_TOP_LEVEL = MESSAGE(157, TRANSLATION(), ERROR(),
Util.gettext("Duplicate classes on top level is not allowed (got %s)."));
public constant Message WHEN_EQ_LHS = MESSAGE(158, TRANSLATION(), ERROR(),
Expand Down

0 comments on commit 849bfba

Please sign in to comment.