mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +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.
74 lines
1.7 KiB
Mathematica
74 lines
1.7 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Try goal with I/O
|
|
|
|
:- module try_syntax_4.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is cc_multi.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module exception.
|
|
:- import_module string.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- type action
|
|
---> act_succeed
|
|
; act_throw.
|
|
|
|
main(!IO) :-
|
|
io.write_string("Begin non-throwing test:\n", !IO),
|
|
run_test(act_succeed, !IO),
|
|
io.nl(!IO),
|
|
io.write_string("Begin throwing test:\n", !IO),
|
|
run_test(act_throw, !IO).
|
|
|
|
:- pred run_test(action::in, io::di, io::uo) is cc_multi.
|
|
|
|
run_test(Action, !IO) :-
|
|
( try [io(!IO)] (
|
|
do_some_io("checkpoint (a)\n", !IO),
|
|
Output = "some output",
|
|
(
|
|
Action = act_succeed
|
|
;
|
|
Action = act_throw,
|
|
throw(90210)
|
|
),
|
|
do_some_io("checkpoint (b)\n", !IO)
|
|
)
|
|
|
|
then
|
|
do_some_io("checkpoint (c)\n", !IO),
|
|
X = Output
|
|
|
|
% Else branch not allowed when using I/O.
|
|
|
|
catch E:int ->
|
|
X = "caught int: " ++ string(E),
|
|
io.write_string("checkpoint (d)\n", !IO)
|
|
|
|
catch E:string ->
|
|
X = "caught string: " ++ E,
|
|
io.write_string("checkpoint (e)\n", !IO)
|
|
|
|
catch_any Other ->
|
|
X = "caught: " ++ string(Other),
|
|
io.write_string("checkpoint (f)\n", !IO)
|
|
),
|
|
io.write_string(X, !IO),
|
|
io.nl(!IO).
|
|
|
|
:- pred do_some_io(string::in, io::di, io::uo) is det.
|
|
|
|
do_some_io(String, !IO) :-
|
|
io.write_string(String, !IO).
|