Package tests
This commit is contained in:
parent
874ab82058
commit
052ea012a3
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
||||
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- fedora-*
|
||||
decision_context: bodhi_update_push_stable
|
||||
subject_type: koji_build
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
||||
@ -1,2 +1,3 @@
|
||||
from Config import *
|
||||
addFilter("spelling-error .* (accessor|getters|inlined)");
|
||||
addFilter("-tests\.noarch: W: no-documentation");
|
||||
|
||||
@ -28,6 +28,7 @@ Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\(Test::More\\)$
|
||||
# Remove private modules
|
||||
%global __requires_exclude %{__requires_exclude}|^perl\\(Object::HashBase::Test::HBase.*
|
||||
%global __requires_exclude %{__requires_exclude}|^perl\\(My::Prefix::HashBase\\)$
|
||||
|
||||
%description
|
||||
This package is used to generate classes based on hash references. Using this
|
||||
@ -37,6 +38,15 @@ be generated for you. You also get constants for each accessor (all caps)
|
||||
which return the key into the hash for that accessor. Single inheritance is
|
||||
also supported.
|
||||
|
||||
%package tests
|
||||
Summary: Tests for %{name}
|
||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
Requires: perl-Test-Harness
|
||||
|
||||
%description tests
|
||||
Tests from %{name}. Execute them
|
||||
with "%{_libexecdir}/%{name}/test".
|
||||
|
||||
%package tools
|
||||
Summary: Generate inlined Object::HashBase Perl module
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
@ -51,6 +61,11 @@ also generate the tests for it.
|
||||
%prep
|
||||
%setup -q -n Object-HashBase-%{version}
|
||||
%patch0 -p1
|
||||
# Help generators to recognize Perl scripts
|
||||
for F in t/*.t; do
|
||||
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!\s*perl}{$Config{startperl}}' "$F"
|
||||
chmod +x "$F"
|
||||
done
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
@ -58,7 +73,15 @@ perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
|
||||
%install
|
||||
%{make_install}
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
# Install tests
|
||||
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
||||
cp -a t %{buildroot}%{_libexecdir}/%{name}
|
||||
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
||||
#!/bin/sh
|
||||
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
||||
EOF
|
||||
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
||||
%{_fixperms} %{buildroot}/*
|
||||
|
||||
%check
|
||||
make test
|
||||
@ -71,6 +94,9 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
%exclude %{_mandir}/man3/Object::HashBase::*
|
||||
|
||||
%files tests
|
||||
%{_libexecdir}/%{name}
|
||||
|
||||
%files tools
|
||||
%{_bindir}/hashbase_inc.pl
|
||||
%{perl_vendorlib}/Object/HashBase
|
||||
@ -78,6 +104,7 @@ make test
|
||||
|
||||
%changelog
|
||||
* Mon Dec 12 2022 Michal Josef Špaček <mspacek@redhat.com> - 0.009-11
|
||||
- Package tests
|
||||
- Update license to SPDX format
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-10
|
||||
|
||||
5
plans/sanity.fmf
Normal file
5
plans/sanity.fmf
Normal file
@ -0,0 +1,5 @@
|
||||
summary: Sanity tests
|
||||
discover:
|
||||
how: fmf
|
||||
execute:
|
||||
how: tmt
|
||||
4
tests/upstream-tests.fmf
Normal file
4
tests/upstream-tests.fmf
Normal file
@ -0,0 +1,4 @@
|
||||
summary: Upstream tests
|
||||
component: perl-Object-HashBase
|
||||
require: perl-Object-HashBase-tests
|
||||
test: /usr/libexec/perl-Object-HashBase/test
|
||||
Loading…
Reference in New Issue
Block a user