mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 09:23:44 +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.
45 lines
1.3 KiB
Mathematica
45 lines
1.3 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
% Regression test. bit_buffer.write.finalize_to_bitmap aborted on some input.
|
|
%
|
|
% Uncaught Mercury exception:
|
|
% bitmap_error("copy_bits (source): 0 bits starting at bit 0
|
|
% is out of bounds [0, 0).")
|
|
%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module finalize_to_bitmap.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bitmap.
|
|
:- import_module bit_buffer.
|
|
:- import_module bit_buffer.write.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
main(!IO) :-
|
|
some [!Buf] (
|
|
!:Buf = new_bitmap_builder(8),
|
|
put_byte(1, !Buf),
|
|
put_byte(2, !Buf),
|
|
put_byte(3, !Buf),
|
|
put_byte(4, !Buf),
|
|
put_byte(5, !Buf),
|
|
put_byte(6, !Buf),
|
|
put_byte(7, !Buf),
|
|
put_byte(8, !Buf),
|
|
Bitmap = finalize_to_bitmap(!.Buf),
|
|
io.write(Bitmap, !IO),
|
|
io.nl(!IO)
|
|
).
|