Skip to content

Commit

Permalink
[t] Mark failing Complex tests as "todo"
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobrito committed Dec 14, 2010
1 parent 39fd5e7 commit a2643ba
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions t/pmc/complex.t
Expand Up @@ -1239,20 +1239,20 @@ todo:
.complex_op_is("0.5+0i", "-0.000000+1.047198i", 'acosh' )
.complex_op_is("1+0i", "-0.000000+0.000000i", 'acosh' )
.complex_op_is("2+0i", "-1.316958+0.000000i", 'acosh' )
.complex_op_is("0-2i", "1.443635-1.570796i", 'acosh' )
.complex_op_is("0-1i", "0.881374-1.570796i", 'acosh' )
.complex_op_is("0-0.5i", "0.481212-1.570796i", 'acosh' )
.complex_op_todo("0-2i", "1.443635-1.570796i", 'acosh', "TT #1891" )
.complex_op_todo("0-1i", "0.881374-1.570796i", 'acosh', "TT #1891" )
.complex_op_todo("0-0.5i", "0.481212-1.570796i", 'acosh', "TT #1891" )
.complex_op_is("0+0.5i", "0.481212+1.570796i", 'acosh' )
.complex_op_is("0+1i", "0.881374+1.570796i", 'acosh' )
.complex_op_is("0+2i", "1.443635+1.570796i", 'acosh' )
.complex_op_is("2+3i", "1.983387+1.000144i", 'acosh' )
.complex_op_is("2-3i", "1.983387-1.000144i", 'acosh' )
.complex_op_todo("2-3i", "1.983387-1.000144i", 'acosh', "TT #1891" )
.complex_op_is("-2+3i", "1.983387+2.141449i", 'acosh' )
.complex_op_is("-2-3i", "1.983387-2.141449i", 'acosh' )
.complex_op_todo("-2-3i", "1.983387-2.141449i", 'acosh', "TT #1891" )
.end

.sub atanh_of_complex_numbers
.complex_op_is("-2+0i", "-0.549306+1.570796i", 'atanh' )
.complex_op_todo("-2+0i", "-0.549306+1.570796i", 'atanh', "TT #1891" )
.complex_op_is("-0.5+0i", "-0.549306+0.000000i", 'atanh' )
.complex_op_is("0.5+0i", "0.549306+0.000000i", 'atanh' )
.complex_op_is("1+0i", "Inf+0.000000i", 'atanh' )
Expand All @@ -1271,7 +1271,7 @@ todo:

.sub acoth_of_complex_numbers
.complex_op_is("-2+0i", "-0.549306+0.000000i", 'acoth' )
.complex_op_is("-0.5+0i", "-0.549306+1.570796i", 'acoth' )
.complex_op_todo("-0.5+0i", "-0.549306+1.570796i", 'acoth', "TT #1891" )
.complex_op_is("0.5+0i", "0.549306-1.570796i", 'acoth' )
.complex_op_is("1+0i", "Inf+0.000000i", 'acoth' )
.complex_op_is("2+0i", "0.549306+0.000000i", 'acoth' )
Expand Down Expand Up @@ -1310,18 +1310,18 @@ todo:
.complex_op_is("-2+0i", "-0.000000+2.094395i", 'asech' )
.complex_op_is("-1+0i", "-0.000000+3.141593i", 'asech' )
.complex_op_is("-0.5+0i", "1.316958+3.141593i", 'asech' )
.complex_op_is("0.5+0i", "1.316958+0.000000i", 'asech' )
.complex_op_todo("0.5+0i", "1.316958+0.000000i", 'asech', "TT #1891" )
.complex_op_is("1+0i", "-0.000000+0.000000i", 'asech' )
.complex_op_is("2+0i", "-0.000000+1.047198i", 'asech' )
.complex_op_is("0-2i", "0.481212+1.570796i", 'asech' )
.complex_op_is("0-1i", "0.881374+1.570796i", 'asech' )
.complex_op_is("0-0.5i", "1.443635+1.570796i", 'asech' )
.complex_op_is("0+0.5i", "1.443635-1.570796i", 'asech' )
.complex_op_is("0+1i", "0.881374-1.570796i", 'asech' )
.complex_op_is("0+2i", "0.481212-1.570796i", 'asech' )
.complex_op_is("2+3i", "0.231335-1.420411i", 'asech' )
.complex_op_todo("0+0.5i", "1.443635-1.570796i", 'asech', "TT #1891" )
.complex_op_todo("0+1i", "0.881374-1.570796i", 'asech', "TT #1891" )
.complex_op_todo("0+2i", "0.481212-1.570796i", 'asech', "TT #1891" )
.complex_op_todo("2+3i", "0.231335-1.420411i", 'asech', "TT #1891" )
.complex_op_is("2-3i", "0.231335+1.420411i", 'asech' )
.complex_op_is("-2+3i", "0.231335-1.721182i", 'asech' )
.complex_op_todo("-2+3i", "0.231335-1.721182i", 'asech', "TT #1891" )
.complex_op_is("-2-3i", "0.231335+1.721182i", 'asech' )
.end

Expand Down

0 comments on commit a2643ba

Please sign in to comment.