Natools

Check-in [77d59bd0f4]
Login
Overview
Comment:smaz_tests: fix message of exceptions during decompression roundtrip
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 77d59bd0f4104f17f2cf0588511fbf5eadbdc356
User & Date: nat on 2016-12-27 21:28:43
Other Links: manifest | tags
Context
2016-12-28
22:29
smaz_implementations-base_64: fix reading of 3n+2 verbatim length

A sign error caused a direct constraint error, and using the wrong type caused overlong reads (now 4 is hardcoded just like it is in encoding code). check-in: 23d16059bd user: nat tags: trunk

2016-12-27
21:28
smaz_tests: fix message of exceptions during decompression roundtrip check-in: 77d59bd0f4 user: nat tags: trunk
2016-12-26
20:00
smaz_tests: add tests to fully cover non-variable-verbatim code check-in: c0e42e8031 user: nat tags: trunk
Changes

Modified tests/natools-smaz_tests.adb from [de7679f0cf] to [bee7ae34a6].

152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
                  end if;
               end;
            end if;
         end;
      exception
         when Error : others =>
            if not First_OK then
               Test.Info ("During compression of " & Image (Compressed));
            end if;

            Test.Report_Exception (Error, NT.Fail);
      end;
   end Generic_Roundtrip_Test;









|







152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
                  end if;
               end;
            end if;
         end;
      exception
         when Error : others =>
            if not First_OK then
               Test.Info ("During decompression of " & Image (Compressed));
            end if;

            Test.Report_Exception (Error, NT.Fail);
      end;
   end Generic_Roundtrip_Test;