mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 18:33:58 +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.
98 lines
3.2 KiB
Mathematica
98 lines
3.2 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% This program tests whether the tracer works for procedures with
|
|
% lots of arguments (beyond NUM_REAL_REGS and MAX_REAL_REGS).
|
|
% At the moment, MAX_REAL_REGS is 32, so a procedure with 41 args
|
|
% is a full test.
|
|
|
|
:- module debugger_regs.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io__state, io__state).
|
|
:- mode main(di, uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module list.
|
|
:- import_module int.
|
|
|
|
main -->
|
|
% The purpose of list is to force the tracer to call the Mercury
|
|
% code to print a list of integers, when the input script asks
|
|
% for the outputs of data to be printed. In the past this was
|
|
% sufficient to cause part of the C stack to be overwritten.
|
|
% It also tests whether the values of A0 etc that the tracer prints
|
|
% are derived from the register contents produced by data,
|
|
% or from the register contents left there by the code that
|
|
% prints _List.
|
|
{ data(_List,
|
|
A0, A1, A2, A3, A4, A5, A6, A7, A8, A9,
|
|
B0, B1, B2, B3, B4, B5, B6, B7, B8, B9,
|
|
C0, C1, C2, C3, C4, C5, C6, C7, C8, C9,
|
|
D0, D1, D2, D3, D4, D5, D6, D7, D8, D9) },
|
|
io__write_string(A0),
|
|
io__write_string(A1),
|
|
io__write_string(A2),
|
|
io__write_string(A3),
|
|
io__write_string(A4),
|
|
io__write_string(A5),
|
|
io__write_string(A6),
|
|
io__write_string(A7),
|
|
io__write_string(A8),
|
|
io__write_string(A9),
|
|
io__write_string("\n"),
|
|
io__write_string(B0),
|
|
io__write_string(B1),
|
|
io__write_string(B2),
|
|
io__write_string(B3),
|
|
io__write_string(B4),
|
|
io__write_string(B5),
|
|
io__write_string(B6),
|
|
io__write_string(B7),
|
|
io__write_string(B8),
|
|
io__write_string(B9),
|
|
io__write_string("\n"),
|
|
io__write_string(C0),
|
|
io__write_string(C1),
|
|
io__write_string(C2),
|
|
io__write_string(C3),
|
|
io__write_string(C4),
|
|
io__write_string(C5),
|
|
io__write_string(C6),
|
|
io__write_string(C7),
|
|
io__write_string(C8),
|
|
io__write_string(C9),
|
|
io__write_string("\n"),
|
|
io__write_string(D0),
|
|
io__write_string(D1),
|
|
io__write_string(D2),
|
|
io__write_string(D3),
|
|
io__write_string(D4),
|
|
io__write_string(D5),
|
|
io__write_string(D6),
|
|
io__write_string(D7),
|
|
io__write_string(D8),
|
|
io__write_string(D9),
|
|
io__write_string("\n").
|
|
|
|
:- pred data(list(int)::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out,
|
|
string::out, string::out, string::out, string::out, string::out) is det.
|
|
|
|
data([1, 2, 3, 4, 5],
|
|
"a0", "a1", "a2", "a3", "a4", "a5", "a6", "a7", "a8", "a9",
|
|
"b0", "b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9",
|
|
"c0", "c1", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9",
|
|
"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9").
|