Commented out exception handling code since these routines are not

called from Ada tasks.  It is questionable whether the exception
handling would work correctly.
This commit is contained in:
Joel Sherrill
1997-06-03 15:40:24 +00:00
parent 4db9c861dc
commit 981500206f

View File

@@ -133,11 +133,11 @@ package body Test_Support is
Text_IO.Put_Line( "<pause> " );
-- Text_IO.Get_Line( Ignored_String, Ignored_Last );
exception
-- exception
when Text_IO.End_Error =>
-- ignore this error. It happens when redirecting input from /dev/null
return;
-- when Text_IO.End_Error =>
-- -- ignore this error. It happens when redirecting input from /dev/null
-- return;
end Pause;
@@ -159,13 +159,13 @@ package body Test_Support is
Text_IO.Put( "<pause - screen " );
Unsigned32_IO.Put( SCREEN, Width=>2 );
Text_IO.Put_Line( "> " );
Text_IO.Get_Line( Ignored_String, Ignored_Last );
-- Text_IO.Get_Line( Ignored_String, Ignored_Last );
exception
-- exception
when Text_IO.End_Error =>
-- ignore this error. It happens when redirecting input from /dev/null
return;
-- when Text_IO.End_Error =>
-- -- ignore this error. It happens when redirecting input from /dev/null
-- return;
end Pause_And_Screen_Number;