Skip to content

Instantly share code, notes, and snippets.

@Tux
Created February 2, 2015 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tux/5838b1eac0512495dd30 to your computer and use it in GitHub Desktop.
Save Tux/5838b1eac0512495dd30 to your computer and use it in GitHub Desktop.
Inline::Perl5 FAIL
rakudobrew/Inline-Perl5 582 > prove -e 'perl6 -Ilib' t
t/autoload.t .............. ok
t/call.t .................. Failed 2/12 subtests
t/call_back.t ............. ok
t/callables.t ............. ok
t/can.t ................... ok
t/eval.t .................. ok
t/eval_return_values.t .... ok
t/exceptions.t ............ ok
t/from.t .................. ok
t/inherit.t ............... ok
t/p5_to_p6.t .............. 1/?
# Failed test at t/p5_to_p6.t line 10
# expected: '5.5'
# got: '0'
# Looks like you failed 1 tests of 11
t/p5_to_p6.t .............. Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/11 subtests
t/p6_object_destructor.t .. ok
t/p6_to_p5.t .............. 1/11
# Failed test 'Can round-trip Num'
# at t/p6_to_p5.t line 16
# expected: 2.4e0
# got: 0e0
# Failed test at t/p6_to_p5.t line 48
# Looks like you failed 2 tests of 11
t/p6_to_p5.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/11 subtests
t/precomp.t ............... ok
t/use.t ................... ok
t/v6.t .................... ok
Test Summary Report
-------------------
t/call.t (Wstat: 0 Tests: 12 Failed: 2)
Failed tests: 10-11
t/p5_to_p6.t (Wstat: 256 Tests: 11 Failed: 1)
Failed test: 2
Non-zero exit status: 1
t/p6_to_p5.t (Wstat: 512 Tests: 11 Failed: 2)
Failed tests: 4, 11
Non-zero exit status: 2
Files=16, Tests=284, 24 wallclock secs ( 0.07 usr 0.01 sys + 23.70 cusr 0.86 csys = 24.64 CPU)
Result: FAIL
rakudobrew/Inline-Perl5 583 > make test
prove -e 'perl6 -Ilib' t
t/autoload.t .............. ok
t/call.t .................. Failed 2/12 subtests
t/call_back.t ............. 1/? ===SORRY!===
No such method '' for invocant of type 'Foo'
t/call_back.t ............. Dubious, test returned 1 (wstat 256, 0x100)
All 34 subtests passed
t/callables.t ............. ok
t/can.t ................... ok
t/eval.t .................. ok
t/eval_return_values.t .... ok
t/exceptions.t ............ ok
t/from.t .................. ok
t/inherit.t ............... ok
t/p5_to_p6.t .............. 1/?
# Failed test at t/p5_to_p6.t line 10
# expected: '5.5'
# got: '0'
# Looks like you failed 1 tests of 11
t/p5_to_p6.t .............. Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/11 subtests
t/p6_object_destructor.t .. ok
t/p6_to_p5.t .............. 1/11
# Failed test 'Can round-trip Num'
# at t/p6_to_p5.t line 16
# expected: 2.4e0
# got: 0e0
# Failed test at t/p6_to_p5.t line 48
# Looks like you failed 2 tests of 11
t/p6_to_p5.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/11 subtests
t/precomp.t ............... ok
t/use.t ................... ok
t/v6.t .................... ok
Test Summary Report
-------------------
t/call.t (Wstat: 0 Tests: 12 Failed: 2)
Failed tests: 10-11
t/call_back.t (Wstat: 256 Tests: 34 Failed: 0)
Non-zero exit status: 1
Parse errors: No plan found in TAP output
t/p5_to_p6.t (Wstat: 256 Tests: 11 Failed: 1)
Failed test: 2
Non-zero exit status: 1
t/p6_to_p5.t (Wstat: 512 Tests: 11 Failed: 2)
Failed tests: 4, 11
Non-zero exit status: 2
Files=16, Tests=118, 25 wallclock secs ( 0.06 usr 0.01 sys + 23.71 cusr 0.95 csys = 24.73 CPU)
Result: FAIL
make: *** [test] Error 1
rakudobrew/Inline-Perl5 584 > perl6 -Ilib t/call.t
1..12
1
ok 1 - executing a parameterless function without return value
ok 2 - int params
ok 3 - str params
ok 4 - return one int
ok 5 - return one int
ok 6 - return one string
ok 7 - return mixed values
ok 8 - Perl 5 method call
ok 9 - Perl 5 method call with parameters
not ok 10 - Any converted to undef
not ok 11 - Passing hashes to Perl 5
ok 12 - Passing Perl 5 objects back from Perl 6
rakudobrew/Inline-Perl5 585 > perl6 -Ilib t/p5_to_p6.t
ok 1 -
not ok 2 -
# Failed test at t/p5_to_p6.t line 10
# expected: '5.5'
# got: '0'
ok 3 -
ok 4 -
ok 5 -
ok 6 -
ok 7 -
ok 8 -
ok 9 - p5 undef maps to p6 Any
ok 10 -
ok 11 -
1..11
# Looks like you failed 1 tests of 11
rakudobrew/Inline-Perl5 587 > perl6 -Ilib t/p6_to_p5.t
1..11
ok 1 - Can round-trip Str
ok 2 - Can round-trip Buf
ok 3 - Can round-trip Int
not ok 4 - Can round-trip Num
# Failed test 'Can round-trip Num'
# at t/p6_to_p5.t line 16
# expected: 2.4e0
# got: 0e0
ok 5 - Can round-trip Array
ok 6 - Can round-trip Hash
ok 7 - Can round-trip Any
ok 8 - Can round-trip Foo
ok 9 - UTF-8 string recognized in Perl 5
ok 10 - latin-1 works in Perl 5
not ok 11 -
# Failed test at t/p6_to_p5.t line 48
# Looks like you failed 2 tests of 11
Linux 3.11.10-25-desktop [openSUSE 13.1 (Bottle)] HP Z220CMT Xeon(R) CPU E3-1245 V2 @ 3.40GHz/2448(8) x86_64 11914 Mb
This is perl 5, version 20, subversion 0 (v5.20.0) built for x86_64-linux-thread-multi-ld
This is perl6 version 2015.01-60-g12db81b built on MoarVM version 2015.01-5-ga29eaa9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment