mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-19 19:33:46 +00:00
tests/accumulator/*.m:
tests/analysis_*/*.m:
tests/benchmarks*/*.m:
tests/debugger*/*.{m,exp,inp}:
tests/declarative_debugger*/*.{m,exp,inp}:
tests/dppd*/*.m:
tests/exceptions*/*.m:
tests/general*/*.m:
tests/grade_subdirs*/*.m:
tests/hard_coded*/*.m:
Make these tests use four-space indentation, and ensure that
each module is imported on its own line. (I intend to use the latter
to figure out which subdirectories' tests can be executed in parallel.)
These changes usually move code to different lines. For the debugger tests,
specify the new line numbers in .inp files and expect them in .exp files.
66 lines
1.3 KiB
Mathematica
66 lines
1.3 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Test that foreign_enums can be re-exported using pragma foreign_export_enum.
|
|
|
|
:- module exported_foreign_enum.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
main(!IO) :-
|
|
( test(bar) ->
|
|
io.write_string("Success.\n", !IO)
|
|
;
|
|
io.write_string("ERROR.\n", !IO)
|
|
).
|
|
|
|
:- pred test(foo::in) is semidet.
|
|
|
|
:- pragma foreign_proc("C",
|
|
test(X::in),
|
|
[will_not_call_mercury, promise_pure],
|
|
"
|
|
if (X == FOO_bar) {
|
|
SUCCESS_INDICATOR = MR_TRUE;
|
|
} else {
|
|
SUCCESS_INDICATOR = MR_FALSE;
|
|
}
|
|
").
|
|
|
|
:- pragma foreign_proc("C#",
|
|
test(X::in),
|
|
[will_not_call_mercury, promise_pure],
|
|
"
|
|
if (X == FOO_bar) {
|
|
SUCCESS_INDICATOR = true;
|
|
} else {
|
|
SUCCESS_INDICATOR = false;
|
|
}
|
|
").
|
|
|
|
:- pragma foreign_export_enum("C", foo/0, [prefix("FOO_")]).
|
|
:- pragma foreign_export_enum("C#", foo/0, [prefix("FOO_")]).
|
|
|
|
:- type foo
|
|
---> foo
|
|
; bar
|
|
; baz.
|
|
|
|
:- pragma foreign_enum("C", foo/0, [
|
|
foo - "400",
|
|
bar - "500",
|
|
baz - "600"
|
|
]).
|
|
|
|
:- pragma foreign_enum("C#", foo/0, [
|
|
foo - "400",
|
|
bar - "500",
|
|
baz - "600"
|
|
]).
|