summaryrefslogtreecommitdiff
path: root/test/test_main.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_main.adb')
-rw-r--r--test/test_main.adb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_main.adb b/test/test_main.adb
index 0aafaf2..6e59445 100644
--- a/test/test_main.adb
+++ b/test/test_main.adb
@@ -3,6 +3,9 @@
-- This source is licensed under the Sunset License v1.0
+pragma Polling (On);
+
+
with
Ada.Text_IO,
@@ -109,8 +112,10 @@ begin
Put_Line ("Running tests for Packrat.Parsers...");
Put_Line ("Testing parser combinators...");
Run_Tests (Rat_Tests.Parsers.Combinator_Tests, How_Verbose);
+ Put_Line ("Testing parser parsers...");
+ Run_Tests (Rat_Tests.Parsers.Parser_Tests, How_Verbose);
Put_Line ("Testing other tests...");
- Run_Tests (Rat_Tests.Parsers.Other_Tests, How_Verbose);
+ Run_Tests (Rat_Tests.Parsers.Other_Tests, How_Verbose, 2.0);
end Test_Main;