Files
mercury/tests/invalid/string_format_unknown.err_exp
Zoltan Somogyi f345d20e33 Rename X's aux modules as X_helper_N in invalid.
tests/invalid/*.m:
    Rename modules as mentioned above.

    In two cases where the main module name is a Mercury keyword (to the
    extent that Mercury has keywords), add a "test_" prefix to the
    module name.

    Reorganize the ho_default_func_2 test case. The original code
    of this test had three modules, a parent and two children,
    with the module being tested being one of the *child* modules
    (ho_default_func_2.sub). This does not work; the .log file
    from the successful execution of this test case showed that
    there was no actual compilation involved; the test stopped
    after invoking "mmc --generate-dependencies" on that child module.
    The new version of this test makes that child module the main module,
    and moves the relevant parts of the other two original modules
    into a single new child module.

    Rename ii_parent to instance_pc (pc being short for parent-child).
    This test case still has the child module listed as the target
    in Mmakefile, so it still does not progress past generating its
    dependencies.

    Rename the imported_mode test case as bad_exported_mode,
    because this is what it was testing.

    exported_mode.m was used both as the main module of a test,
    and as a helper module in the imported_mode test (now renamed
    to bad_exported_mode). Make a copy of it as a helper module
    for bad_exported_mode.

    Update all references to the moved modules.

    General updates to programming style, such as

    - replacing DCG notation with state var notation
    - adding lines around vim modelines
    - fixing indentation
    - fixing grammar errors in comments

tests/hard_coded/Mmakefile:
tests/hard_coded/Mercury.options:
    Update all references to the moved modules and/or moved lines.
2023-06-16 20:18:36 +02:00

35 lines
2.2 KiB
Plaintext

string_format_unknown.m:023: Unknown format string in call to function
string_format_unknown.m:023: `string.format'/2.
string_format_unknown.m:025: Mismatched format and values in call to function
string_format_unknown.m:025: `string.format'/2:
string_format_unknown.m:025: The first conversion specifier uses the
string_format_unknown.m:025: specifier character `d', but the corresponding
string_format_unknown.m:025: input is a string. The only specifier applicable
string_format_unknown.m:025: to strings is %s.
string_format_unknown.m:028: Mismatched format and values in call to predicate
string_format_unknown.m:028: `io.format'/4:
string_format_unknown.m:028: The first conversion specifier uses the
string_format_unknown.m:028: specifier character `d', but the corresponding
string_format_unknown.m:028: input is a string. The only specifier applicable
string_format_unknown.m:028: to strings is %s.
string_format_unknown.m:029: Mismatched format and values in call to predicate
string_format_unknown.m:029: `io.format'/5:
string_format_unknown.m:029: The first conversion specifier uses the
string_format_unknown.m:029: specifier character `d', but the corresponding
string_format_unknown.m:029: input is a string. The only specifier applicable
string_format_unknown.m:029: to strings is %s.
string_format_unknown.m:030: Mismatched format and values in call to predicate
string_format_unknown.m:030: `io.format'/4:
string_format_unknown.m:030: The first conversion specifier uses the unknown
string_format_unknown.m:030: specifier character `w'.
string_format_unknown.m:040: Unknown format values in call to predicate
string_format_unknown.m:040: `io.format'/5.
string_format_unknown.m:041: Unknown format values in call to predicate
string_format_unknown.m:041: `stream.string_writer.format'/5.
string_format_unknown.m:046: Mismatched format and values in call to predicate
string_format_unknown.m:046: `io.format'/5:
string_format_unknown.m:046: The first conversion specifier uses the
string_format_unknown.m:046: specifier character `d', but the corresponding
string_format_unknown.m:046: input is a float. The specifiers applicable to
string_format_unknown.m:046: floats are %f, %e, %E, %g and %G.