From 6f767eb4b27c4e15ca6c3be3b93ca187caf95bd9 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 8 Jan 2019 00:00:09 +1100 Subject: Basic test framework and initial tests for Packrat.Util predicates --- tests.gpr | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests.gpr (limited to 'tests.gpr') diff --git a/tests.gpr b/tests.gpr new file mode 100644 index 0000000..a4f5f93 --- /dev/null +++ b/tests.gpr @@ -0,0 +1,30 @@ + + +with "packrat"; + + +project Tests is + + + for Languages use ("Ada"); + + + for Source_Dirs use ("test/**"); + for Object_Dir use "obj"; + for Exec_Dir use "bin"; + for Main use ("test_main.adb"); + + + package Builder is + for Executable("test_main.adb") use "testrat"; + end Builder; + + + package Compiler is + for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM99nprt"); + end Compiler; + + +end Tests; + + -- cgit