Commit 351272b9 by Olivier Hainque Committed by Eric Botcazou

in_out_parameter.adb: New test.

	* gnat.dg/in_out_parameter.adb: New test.

From-SVN: r116945
parent fc87142b
2006-09-14 Olivier Hainque <hainque@adacore.com>
* gnat.dg/in_out_parameter.adb: New test.
2006-09-13 Andrew Pinski <pinskia@physics.uc.edu>
PR debug/28980
-- { dg-do run }
with Ada.Streams.Stream_IO;
procedure In_Out_Parameter is
use Ada.Streams; use Stream_IO;
File : Stream_IO.File_Type;
type Bitmap is array (Natural range <>) of Boolean;
for Bitmap'Component_Size use 1;
type Message is record
B : Bitmap (0 .. 14);
end record;
for Message use record
B at 0 range 2 .. 16;
end record;
TX, RX : Message;
begin
TX.B := (others => False);
Stream_IO.Create (File => File, Mode => Out_File, Name => "data");
Message'Output (Stream (File), TX);
Stream_IO.Close (File);
--
Stream_IO.Open (File => File, Mode => In_File, Name => "data");
RX := Message'Input (Stream (File));
Stream_IO.Close (File);
if RX /= TX then
raise Program_Error;
end if;
end In_Out_Parameter;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment