Skip to content

Commit

Permalink
Merge branch 'quadmath-20210505'
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed May 9, 2021
2 parents c87bbe1 + b56c246 commit 6b4bbed
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions t/11-reader.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ use Devel::NYTProf::Constants qw(
plan skip_all => "needs different profile data for testing on longdouble builds"
if (defined $Config{uselongdouble} and $Config{uselongdouble} eq 'define');

plan skip_all => "needs different profile data for testing on quadmath builds"
if (defined $Config{usequadmath} and $Config{usequadmath} eq 'define');

my $file = "./t/nytprof_11-reader.out.txt";
croak "No $file" unless -f $file;

Expand Down
3 changes: 3 additions & 0 deletions t/12-data.t
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ use Devel::NYTProf::Constants qw(
plan skip_all => "needs different profile data for testing on longdouble builds"
if (defined $Config{uselongdouble} and $Config{uselongdouble} eq 'define');

plan skip_all => "needs different profile data for testing on quadmath builds"
if (defined $Config{usequadmath} and $Config{usequadmath} eq 'define');

my $file = "./t/nytprof_12-data.out.txt";
croak "No $file" unless -f $file;

Expand Down
3 changes: 3 additions & 0 deletions t/13-fileinfo.t
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ use Devel::NYTProf::Constants qw(
plan skip_all => "needs different profile data for testing on longdouble builds"
if (defined $Config{uselongdouble} and $Config{uselongdouble} eq 'define');

plan skip_all => "needs different profile data for testing on quadmath builds"
if (defined $Config{usequadmath} and $Config{usequadmath} eq 'define');

my $file = "./t/nytprof_13-data.out.txt";
croak "No $file" unless -f $file;

Expand Down
3 changes: 3 additions & 0 deletions t/14-subinfo.t
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ use Devel::NYTProf::Constants qw(
plan skip_all => "needs different profile data for testing on longdouble builds"
if (defined $Config{uselongdouble} and $Config{uselongdouble} eq 'define');

plan skip_all => "needs different profile data for testing on quadmath builds"
if (defined $Config{usequadmath} and $Config{usequadmath} eq 'define');

my $file = "./t/nytprof_14-subinfo.out.txt";
croak "No $file" unless -f $file;

Expand Down

0 comments on commit 6b4bbed

Please sign in to comment.