Overview
Comment: | smaz_tests: update base-4096 expected streams for the new dictionaries |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
541596303aa2cf43a898e849bea5fe17 |
User & Date: | nat on 2017-02-10 20:58:14 |
Other Links: | manifest | tags |
Context
2017-02-11
| ||
20:52 |
smaz_tests: fix verbatim parts of expected base-4096 streams
Why didn't just use standard base-64!? check-in: 0d15ccca30 user: nat tags: trunk | |
2017-02-10
| ||
20:58 | smaz_tests: update base-4096 expected streams for the new dictionaries check-in: 541596303a user: nat tags: trunk | |
2017-02-09
| ||
22:57 | smat_tests: add 256 digraphs to the base-4096 dictionaries check-in: 26569a2ae1 user: nat tags: trunk | |
Changes
Modified tests/natools-smaz_tests.adb from [36eaf7fc1d] to [e9e0134210].
︙ | ︙ | |||
541 542 543 544 545 546 547 | (Report : in out NT.Reporter'Class; Dictionary : in Smaz_4096.Dictionary) is Test : NT.Test := Report.Item ("Roundtrip on sample strings"); begin Roundtrip_Test (Test, Dictionary, "This is a small string", | | > > | > | > | > | > | > | < > < | > | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | (Report : in out NT.Reporter'Class; Dictionary : in Smaz_4096.Dictionary) is Test : NT.Test := Report.Item ("Roundtrip on sample strings"); begin Roundtrip_Test (Test, Dictionary, "This is a small string", To_SEA ("JyuYsA0BiBscXVtBzcOcka")); -- This is a small string Roundtrip_Test (Test, Dictionary, "foobar", To_SEA ("cX5adV")); -- foobar Roundtrip_Test (Test, Dictionary, "the end", To_SEA ("BdmBBX//kB")); -- the en<d > Roundtrip_Test (Test, Dictionary, "not-a-g00d-Exampl333", To_SEA ("sa3/dC1hLWcwMGQtTsYVdbxK")); -- no< t-a -g0 0d->Exampl333 Roundtrip_Test (Test, Dictionary, "Smaz is a simple compression library", To_SEA ("0xlVsA0BiBocTauZmAEbjbGXocFbvAdYGcec")); -- Smaz is a simple compression library Roundtrip_Test (Test, Dictionary, "Nothing is more difficult, and therefore more precious, " & "than to be able to decide", To_SEA ("0vBdpYoBuYwAJbmBiWTXeYfdzCkAha3AGYKccXKcwAJbmBjb2WqYmd//sA" -- Nothing is more difficult, and therefore more precious< ,> & "3ACYvBIdlAmBNVuZ3AwBeWIWeW")); -- than to be able to decide Roundtrip_Test (Test, Dictionary, "this is an example of what works very well with smaz", To_SEA ("BduYsA0BZVoAieTauZyAnBPefV6AJbiZ5AFX6BMe1Z6AvYpBsclV")); -- this is an example of what works very well with smaz Roundtrip_Test (Test, Dictionary, "1000 numbers 2000 will 10 20 30 compress very little", To_SEA ("IH+AyaFaFX0BsI+AQe1ZBA+AUEDA+AOWTaKcyc5AFX6ByZNduZ")); -- 1000 numbers 2*0 will 10 20 30 compress very little", Roundtrip_Test (Test, Dictionary, ": : : :", To_SEA ("5/OiA6IDogOgo")); exception when Error : others => Test.Report_Exception (Error); end Sample_Strings_4096; |
︙ | ︙ |