Overview
Comment: | static_hash_maps-s_expressions-tests: new test around generated function for S-expression interpreter |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e3eb7b3d2d8743dd01e50b19c8295c38 |
User & Date: | nat on 2014-05-29 18:36:26 |
Other Links: | manifest | tags |
Context
2014-05-30
| ||
20:11 | static_hash_maps: add a new option for pragma Pure or Preelaborate on generated packages check-in: 59e052eab5 user: nat tags: trunk | |
2014-05-29
| ||
18:36 | static_hash_maps-s_expressions-tests: new test around generated function for S-expression interpreter check-in: e3eb7b3d2d user: nat tags: trunk | |
2014-05-28
| ||
17:28 | static_hash_maps-s_expressions: add S-expression bindings for the test child function generation check-in: 0d8d6300c9 user: nat tags: trunk | |
Changes
Added src/natools-static_hash_maps-s_expressions-command_maps-test.adb version [c33313b3c2].
|
Added src/natools-static_hash_maps-s_expressions-command_maps-test.ads version [af29308048].
|
Modified src/natools-static_hash_maps-s_expressions-hash_maps.sx from [15b9a7e32e] to [d412302ff5].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 | + | (Natools.Static_Hash_Maps.S_Expressions.Command_Maps private (test-function Test) (Package_Command (hash-package Natools.Static_Hash_Maps.S_Expressions.Command_Pkg) (function To_Package_Command) (not-found Extra_Declarations) (nodes (Extra_Declarations extra-declarations extra-decl) (Private_Child private) |
︙ |
Added tests/natools-static_hash_maps-s_expressions-tests.adb version [6116633193].
|
Added tests/natools-static_hash_maps-s_expressions-tests.ads version [c1e349ba52].
|
Modified tests/test_all.adb from [f858f83fe4] to [6950136de8].
︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | + | with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.Interpreter_Tests; with Natools.S_Expressions.Lockable.Tests; with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; with Natools.S_Expressions.Printers.Pretty.Tests; with Natools.S_Expressions.Printers.Pretty.Config.Tests; with Natools.Static_Hash_Maps.S_Expressions.Tests; with Natools.String_Slice_Set_Tests; with Natools.String_Slice_Tests; with Natools.Tests.Text_IO; procedure Test_All is package Uneven_Chunked_Strings is new Natools.Chunked_Strings (Default_Allocation_Unit => 7, |
︙ | |||
118 119 120 121 122 123 124 125 126 127 128 129 130 131 | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | + + + + | Report.Section ("S_Expressions.Printers.Pretty"); Natools.S_Expressions.Printers.Pretty.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Printers.Pretty.Config"); Natools.S_Expressions.Printers.Pretty.Config.Tests.All_Tests (Report); Report.End_Section; Report.Section ("Static_Hash_Maps.S_Expressions"); Natools.Static_Hash_Maps.S_Expressions.Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices"); Natools.String_Slice_Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices.Slice_Sets"); Natools.String_Slice_Set_Tests.All_Tests (Report); |
︙ |