@@ -1550,6 +1550,7 @@ package body Test.Skeleton is
15501550 & Trim (Subp_Span.Start_Line'Img, Both)
15511551 & " :"
15521552 & Trim (Subp_Span.Start_Column'Img, Both)
1553+ & " :"
15531554 & Get_TR_Name_Suffix (Subp.Subp_Declaration.As_Basic_Decl)
15541555 & " instance at "
15551556 & Instance_Sloc.all );
@@ -1561,8 +1562,9 @@ package body Test.Skeleton is
15611562 & Trim (Subp_Span.Start_Line'Img, Both)
15621563 & " :"
15631564 & Trim (Subp_Span.Start_Column'Img, Both)
1564- & Get_TR_Name_Suffix (Subp.Subp_Declaration.As_Basic_Decl)
1565- & " :" );
1565+ & " :"
1566+ & Get_TR_Name_Suffix
1567+ (Subp.Subp_Declaration.As_Basic_Decl));
15661568 end if ;
15671569 end ;
15681570
@@ -2060,8 +2062,9 @@ package body Test.Skeleton is
20602062 & Trim (First_Line_Number (ISub)'Img, Both)
20612063 & " :"
20622064 & Trim (First_Column_Number (ISub)'Img, Both)
2065+ & " :"
20632066 & Get_TR_Name_Suffix (ISub)
2064- & " : inherited at "
2067+ & " inherited at "
20652068 & Base_Name (Type_Dec.Unit.Get_Filename)
20662069 & " :"
20672070 & Trim (First_Line_Number (Type_Dec)'Img, Both)
@@ -2210,8 +2213,9 @@ package body Test.Skeleton is
22102213 & Trim (First_Line_Number (OSub)'Img, Both)
22112214 & " :"
22122215 & Trim (First_Column_Number (OSub)'Img, Both)
2216+ & " :"
22132217 & Get_TR_Name_Suffix (OSub)
2214- & " : overridden at "
2218+ & " overridden at "
22152219 & Base_Name (TR_W.Original_Type.Unit.Get_Filename)
22162220 & " :"
22172221 & Trim
@@ -3637,8 +3641,9 @@ package body Test.Skeleton is
36373641 & Trim (First_Line_Number (TC.Elem)'Img, Both)
36383642 & " :"
36393643 & Trim (First_Column_Number (TC.Elem)'Img, Both)
3640- & (if Include_Subp_Name then " (" & TC.Name.all & " )" else " " )
3641- & " :" );
3644+ & " :"
3645+ & (if Include_Subp_Name then " (" & TC.Name.all & " )"
3646+ else " " ));
36423647 else
36433648 TR_Info_Add.TR_Info.Tested_Sloc :=
36443649 new String'
@@ -3647,7 +3652,8 @@ package body Test.Skeleton is
36473652 & Trim (First_Line_Number (TC.Elem)'Img, Both)
36483653 & " :"
36493654 & Trim (First_Column_Number (TC.Elem)'Img, Both)
3650- & (if Include_Subp_Name then " (" & TC.Name.all & " )" else " " )
3655+ & " :"
3656+ & (if Include_Subp_Name then " (" & TC.Name.all & " )" else " " )
36513657 & " instance at "
36523658 & Instance_Sloc);
36533659 end if ;
@@ -7669,7 +7675,9 @@ package body Test.Skeleton is
76697675 & Image
76707676 (Start_Sloc
76717677 (Subp.Subp_Declaration.Sloc_Range))
7672- & " :" )),
7678+ & " :"
7679+ & Get_TR_Name_Suffix
7680+ (Subp.Subp_Declaration.As_Basic_Decl))),
76737681 Test_Package => new String'(Test_Unit_Name),
76747682 Original_Type => No_Ada_Node,
76757683 Original_Subp => Subp.Subp_Declaration,
0 commit comments