From a21cc8153592700ae7cb2cdfbb24b377e096a22a Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 4 Dec 2020 20:17:43 +1100 Subject: Scan/Parse functions are now packages, tests broken with linker errors --- test/rat_tests-lexers.ads | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/rat_tests-lexers.ads') diff --git a/test/rat_tests-lexers.ads b/test/rat_tests-lexers.ads index 0cf86b7..fe6cca8 100644 --- a/test/rat_tests-lexers.ads +++ b/test/rat_tests-lexers.ads @@ -49,14 +49,14 @@ package Rat_Tests.Lexers is function Stamp_Check return Test_Result; function Ignore_Check return Test_Result; - function Scan_Check return Test_Result; - function Scan_Only_Check return Test_Result; + function Scan_Parts_Check return Test_Result; + function Scan_Once_Check return Test_Result; function Scan_With_Check return Test_Result; function Scan_Set_Check return Test_Result; function Scan_Set_With_Check return Test_Result; - function Scan_Error_Check return Test_Result; - function Scan_Only_Error_Check return Test_Result; + function Scan_Parts_Error_Check return Test_Result; + function Scan_Once_Error_Check return Test_Result; function Scan_With_Error_Check return Test_Result; function Scan_Set_Error_Check return Test_Result; function Scan_Set_With_Error_Check return Test_Result; @@ -64,13 +64,13 @@ package Rat_Tests.Lexers is Lexer_Tests : Test_Array := ((+"Stamp", Stamp_Check'Access), (+"Ignore", Ignore_Check'Access), - (+"Scan", Scan_Check'Access), - (+"Scan_Only", Scan_Only_Check'Access), + (+"Scan_Parts", Scan_Parts_Check'Access), + (+"Scan_Once", Scan_Once_Check'Access), (+"Scan_With", Scan_With_Check'Access), (+"Scan_Set", Scan_Set_Check'Access), (+"Scan_Set_With", Scan_Set_With_Check'Access), - (+"Scan Exception", Scan_Error_Check'Access), - (+"Scan_Only Exception", Scan_Only_Error_Check'Access), + (+"Scan_Parts Exception", Scan_Parts_Error_Check'Access), + (+"Scan_Once Exception", Scan_Once_Error_Check'Access), (+"Scan_With Exception", Scan_With_Error_Check'Access), (+"Scan_Set Exception", Scan_Set_Error_Check'Access), (+"Scan_Set_With Exception", Scan_Set_With_Error_Check'Access)); -- cgit