DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 1956 (0x7a4) Types: TextFile Names: »V«
└─⟦db1c56801⟧ Bits:30000748 8mm tape, Rational 1000, TESTMATE 2_2_0 └─ ⟦866d14df1⟧ »DATA« └─⟦97c804b2f⟧ └─⟦this⟧
with System; with Po_Handle; with Po_Access_Modes; with Po_Conditions; with Executable_Code; with Access_String; package Test_Script_Control is type Object is private; type Coverage_Kinds is (Segment, Decision); type Xobject is record Overall_Clock_Time : Duration := Duration'Last; Overall_Cpu_Time : Duration := Duration'Last; Max_Clock_Per_Test : Duration := Duration'Last; Max_Cpu_Per_Test : Duration := Duration'Last; Max_Number_Of_Failures : Natural := Natural'Last; Terminate_On_Unhandled_Exception : Boolean := False; Log_Test_Description : Boolean := False; Coverage_Analyzer_Params : Executable_Code.Parameters; User_Controls : Access_String.Object; Coverage_Kind : Coverage_Kinds := Segment; Is_Default_Object : Boolean := True; end record; function Xobject_Of (The_Obj : Object) return Xobject; function Uncontrolled_Script return Test_Script_Control.Object; function Constructor (Heap : System.Segment) return Test_Script_Control.Object; procedure Destructor (The_Context : in out Test_Script_Control.Object); package Persistent_Operations is procedure Get_Condition (Obj : in Test_Script_Control.Object; Into : in out Po_Conditions.Condition); procedure Open (The_Obj : in out Test_Script_Control.Object; Mode : in Po_Access_Modes.Modes; Handle : in Po_Handle.Object); function Name (For_Obj : Test_Script_Control.Object) return String; procedure Close (The_Obj : in out Test_Script_Control.Object; Abandon : Boolean := False); end Persistent_Operations; end Test_Script_Control;