Skip to content

Commit

Permalink
Fix some test-suite bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmacks committed Oct 10, 2023
1 parent e65be02 commit 9818153
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ CompileScript: <<
export ZLIB_LIB=/usr/lib
%{default_script}
<<
InfoTest: <<
TestScript: <<
#!/bin/sh -ev
# OS X has minor-version or teeny-version mismatch for
# zlib.h vs libz. That lib documents to only compare
# major-version, but test-suite here checks the whole
# v-string.
export TEST_SKIP_VERSION_CHECK=1
%{default_script}
<<
<<
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ InfoTest: <<
TestScript: <<
#!/bin/sh -ex
export FULLPERL=`perl -e 'print $ARGV[0]=~/PERL="(.*?)"/' '%c'`
# OS X has minor-version or teeny-version mismatch for
# zlib.h vs libz. That lib documents to only compare
# major-version, but test-suite here checks the whole
# v-string.
export TEST_SKIP_VERSION_CHECK=1
%{default_script}
<<
<<
Expand Down

0 comments on commit 9818153

Please sign in to comment.