Skip to content

Commit

Permalink
Update libarchive version number
Browse files Browse the repository at this point in the history
  • Loading branch information
frithnanth committed Jun 6, 2024
1 parent b3de5fb commit 321d38e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions t/01-version.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ constant AUTHOR = ?%*ENV<TEST_AUTHOR>;
if AUTHOR {
my Archive::Libarchive $a .= new(operation => LibarchiveRead);
my %vers = $a.lib-version;
is %vers<ver>, '3005002', 'libarchive version';
is %vers<strver>, 'libarchive 3.5.2', 'libarchive version as string';
is %vers<ver>, '3007002', 'libarchive version';
is %vers<strver>, 'libarchive 3.7.2', 'libarchive version as string';
is %vers<details>,
'libarchive 3.5.2 zlib/1.2.11 liblzma/5.2.5 bz2lib/1.0.8 liblz4/1.9.3 libzstd/1.4.8',
'libarchive 3.7.2 zlib/1.3.1 liblzma/5.4.5 bz2lib/1.0.8 liblz4/1.9.4 libzstd/1.5.5',
'libarchive version details';
is %vers<liblzma>, '5.2.5', 'liblzma version';
is %vers<liblz4>, '1.9.3', 'liblz4 version';
is %vers<liblzma>, '5.4.5', 'liblzma version';
is %vers<liblz4>, '1.9.4', 'liblz4 version';
is %vers<bzlib>, '1.0.8, 13-Jul-2019', 'bzlib version';
is %vers<zlib>, '1.2.11', 'zlib version';
is %vers<libzstd>, '1.4.8', 'libzstd version';
is %vers<zlib>, '1.3.1', 'zlib version';
is %vers<libzstd>, '1.5.5', 'libzstd version';
}else{
skip-rest 'Skipping author test';
exit;
Expand Down

0 comments on commit 321d38e

Please sign in to comment.