Overview
Comment: | s_expressions-cache_tests: add deep- and shallow-copy to existing tests |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5b437645d5d4d32225cecde3813afc13 |
User & Date: | nat on 2014-02-15 15:20:15 |
Other Links: | manifest | tags |
Context
2014-02-16
| ||
17:59 | s_expressions-generic_caches: fix duplication of child lists check-in: 50ec4ef40a user: nat tags: trunk | |
2014-02-15
| ||
15:20 | s_expressions-cache_tests: add deep- and shallow-copy to existing tests check-in: 5b437645d5 user: nat tags: trunk | |
2014-02-13
| ||
22:15 | s_expressions-cache_tests: new packge for S-expression memory cache test suite check-in: b14a72b9cb user: nat tags: trunk | |
Changes
Modified tests/natools-s_expressions-cache_tests.adb from [2dabc54ccf] to [10f694a2de].
︙ | ︙ | |||
113 114 115 116 117 118 119 | procedure Print_Info is new GNAT.Debug_Pools.Print_Info; begin Print_Info (Pool); Flush; end Info_Pool; begin declare | | > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | procedure Print_Info is new GNAT.Debug_Pools.Print_Info; begin Print_Info (Pool); Flush; end Info_Pool; begin declare Cache, Deep, Shallow : Debug_Caches.Reference; begin Inject_Test (Cache); declare First : Debug_Caches.Cursor := Cache.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test); Printers.Transfer (First, Pr); Output.Check_Stream (Test); end; Deep := Cache.Duplicate; Shallow := Deep; Deep.Append_Atom (To_Atom ("more")); declare Other : Debug_Caches.Cursor := Deep.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test & To_Atom ("4:more")); Printers.Transfer (Other, Pr); Output.Check_Stream (Test); end; declare Second : Debug_Caches.Cursor := Cache.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test); Printers.Transfer (Second, Pr); Output.Check_Stream (Test); end; declare Second_Other : Debug_Caches.Cursor := Shallow.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test & To_Atom ("4:more")); Printers.Transfer (Second_Other, Pr); Output.Check_Stream (Test); end; end; Info_Pool; exception when Error : others => Test.Report_Exception (Error); end Debug_Instantiation; procedure Default_Instantiation (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Default instantiation"); begin declare Cache, Deep, Shallow : Caches.Reference; begin Inject_Test (Cache); declare First : Caches.Cursor := Cache.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test); Printers.Transfer (First, Pr); Output.Check_Stream (Test); end; Deep := Cache.Duplicate; Shallow := Deep; Deep.Append_Atom (To_Atom ("more")); declare Other : Caches.Cursor := Deep.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test & To_Atom ("4:more")); Printers.Transfer (Other, Pr); Output.Check_Stream (Test); end; declare Second : Caches.Cursor := Cache.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test); Printers.Transfer (Second, Pr); Output.Check_Stream (Test); end; declare Second_Other : Caches.Cursor := Shallow.First; Output : aliased Test_Tools.Memory_Stream; Pr : Printers.Canonical (Output'Access); begin Output.Set_Expected (Canonical_Test & To_Atom ("4:more")); Printers.Transfer (Second_Other, Pr); Output.Check_Stream (Test); end; end; exception when Error : others => Test.Report_Exception (Error); end Default_Instantiation; end Natools.S_Expressions.Cache_Tests; |