Compare commits
No commits in common. "c10s" and "c8" have entirely different histories.
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/Test2-Plugin-NoWarnings-0.06.tar.gz
|
||||
1
.perl-Test2-Plugin-NoWarnings.metadata
Normal file
1
.perl-Test2-Plugin-NoWarnings.metadata
Normal file
@ -0,0 +1 @@
|
||||
6e00cc5b49ca297344525b61eff479efac198008 SOURCES/Test2-Plugin-NoWarnings-0.06.tar.gz
|
||||
117
SPECS/perl-Test2-Plugin-NoWarnings.spec
Normal file
117
SPECS/perl-Test2-Plugin-NoWarnings.spec
Normal file
@ -0,0 +1,117 @@
|
||||
Name: perl-Test2-Plugin-NoWarnings
|
||||
Version: 0.06
|
||||
Release: 3%{?dist}
|
||||
Summary: Fail if tests warn
|
||||
License: Artistic 2.0
|
||||
URL: http://search.cpan.org/dist/Test2-Plugin-NoWarnings/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) > 6.75
|
||||
# Module Runtime
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(parent)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Test2::API)
|
||||
BuildRequires: perl(Test2::Event)
|
||||
BuildRequires: perl(Test2::Util::HashBase)
|
||||
BuildRequires: perl(warnings)
|
||||
# Test Suite
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(IPC::Run3)
|
||||
BuildRequires: perl(Test2::Bundle::Extended)
|
||||
BuildRequires: perl(Test2::Require::Module)
|
||||
BuildRequires: perl(Test::More) >= 0.96
|
||||
# Optional Tests
|
||||
BuildRequires: perl(CPAN::Meta) >= 2.120900
|
||||
BuildRequires: perl(CPAN::Meta::Prereqs)
|
||||
# Dependencies
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
Loading this plugin causes your tests to fail if there are any warnings while
|
||||
they run. Each warning generates a new failing test and the warning content is
|
||||
outputted via diag.
|
||||
|
||||
This module uses $SIG{__WARN__}, so if the code you're testing sets this, then
|
||||
this module will stop working.
|
||||
|
||||
%prep
|
||||
%setup -q -n Test2-Plugin-NoWarnings-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot}
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc Changes README.md
|
||||
%{perl_vendorlib}/Test2/
|
||||
%{_mandir}/man3/Test2::Event::Warning.3*
|
||||
%{_mandir}/man3/Test2::Plugin::NoWarnings.3*
|
||||
|
||||
%changelog
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.06-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.06-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 19 2017 Paul Howarth <paul@city-fan.org> - 0.06-1
|
||||
- Update to 0.06
|
||||
- Warnings inside a subtest were not emitted as TAP events, breaking the TAP
|
||||
and making for great confusion: this is because of a bug in the core TAP
|
||||
formatter (https://github.com/Test-More/test-more/issues/776); warnings
|
||||
are now emitted as Ok events instead of Warning events
|
||||
|
||||
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.05-3
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.05-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Nov 8 2016 Paul Howarth <paul@city-fan.org> - 0.05-1
|
||||
- Update to 0.05
|
||||
- Skip compile.t on Windows; this test uses IPC::Run3, which doesn't seem to
|
||||
work well on that platform (CPAN RT#118443)
|
||||
|
||||
* Thu Oct 27 2016 Paul Howarth <paul@city-fan.org> - 0.04-2
|
||||
- We provide Test2::Event::Warning so we don't need to build-require it
|
||||
|
||||
* Mon Oct 24 2016 Paul Howarth <paul@city-fan.org> - 0.04-1
|
||||
- Update to 0.04
|
||||
- Load Test2::Event::Warning in the plugin instead of relying on Test2 to do
|
||||
it for us; this should avoid the bug fixed in the previous version and
|
||||
eliminates the need for the INIT block, which caused its own problems
|
||||
|
||||
* Tue Oct 18 2016 Paul Howarth <paul@city-fan.org> - 0.03-1
|
||||
- Update to 0.03
|
||||
- Add the $SIG{__WARN__} hook in an INIT block; we really don't want to
|
||||
trigger this because of a compile-time warning, and because of a bug in
|
||||
Test::Builder, this can actually cause the warning to be lost entirely
|
||||
(https://github.com/Test-More/test-more/issues/729)
|
||||
- The Test2::Event::Warning event now returns true for increments_count,
|
||||
which means that the test failure caused by a warning will not be output
|
||||
as a TAP test line; previously this was just seen as a diag line, which
|
||||
could be quite confusing
|
||||
(https://github.com/Test-More/test-more/issues/728)
|
||||
|
||||
* Mon Sep 19 2016 Paul Howarth <paul@city-fan.org> - 0.02-3
|
||||
- Drop unused BR: findutils (#1377228)
|
||||
|
||||
* Mon Sep 19 2016 Paul Howarth <paul@city-fan.org> - 0.02-2
|
||||
- Sanitize for Fedora submission
|
||||
|
||||
* Sun Sep 18 2016 Paul Howarth <paul@city-fan.org> - 0.02-1
|
||||
- Initial RPM version
|
||||
@ -1 +0,0 @@
|
||||
perl-Test2-Plugin-NoWarnings package is retired on branch c10s for BAKERY-412
|
||||
Loading…
Reference in New Issue
Block a user