Ticket #1488: t_op_trans_old_t.patch
| File t_op_trans_old_t.patch, 0.8 KB (added by bubaflub, 3 years ago) |
|---|
-
t/op/trans_old.t
8 8 use Test::More; 9 9 use Parrot::Test tests => 19; 10 10 use Math::Trig qw( tan sec atan asin acos asec cosh sinh tanh sech ); 11 use Parrot::Config qw( %PConfig ); 11 12 12 13 =head1 NAME 13 14 … … 329 330 ok 16 330 331 OUTPUT 331 332 333 SKIP: { 334 unless ($PConfig{has_negative_zero}) { 335 skip( "No negative zero, test skipped" ) 336 } 337 332 338 pasm_output_is( <<"CODE", <<'OUTPUT', 'atan, part 2' ); 333 339 .include 'fp_equality.pasm' 334 340 atan N4, -0.0, -0.0 … … 340 346 ok 1 341 347 OUTPUT 342 348 349 } 350 343 351 pasm_output_is( <<"CODE", <<OUTPUT, "log2" ); 344 352 .include 'fp_equality.pasm' 345 353 set N1, 10.0
