*** Module::AutoInstall version 1.03 *** Checking for Perl dependencies... [Core Features] - Test::More ...loaded. (0.72 >= 0.47) *** Module::AutoInstall configuration finished. Checking if your kit is complete... Looks good Writing Makefile for Class::C3::XS Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. cp lib/Class/C3/XS.pm blib\lib\Class\C3\XS.pm C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" C:\cpanrun\build\5-10-0\lib\ExtUtils\xsubpp -typemap C:\cpanrun\build\5-10-0\lib\ExtUtils\typemap XS.xs > XS.xsc && C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Command -e mv XS.xsc XS.c Please specify prototyping behavior for XS.xs (see perlxs manual) cl -c -nologo -GF -W3 -MD -Zi -DNDEBUG -O1 -DWIN32 -D_CONSOLE -DNO_STRICT -DHAVE_DES_FCRYPT -DUSE_SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -DPERL_MSVCRT_READFIX -MD -Zi -DNDEBUG -O1 -DVERSION=\"0.08\" -DXS_VERSION=\"0.08\" "-IC:\cpanrun\build\5-10-0\lib\CORE" XS.c XS.c Running Mkbootstrap for Class::C3::XS () C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Command -e chmod 644 XS.bs C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Mksymlists -e "Mksymlists('NAME'=>\"Class::C3::XS\", 'DLBASE' => 'XS', 'DL_FUNCS' => { }, 'FUNCLIST' => [], 'IMPORTS' => { }, 'DL_VARS' => []);" link -out:blib\arch\auto\Class\C3\XS\XS.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\cpanrun\build\5-10-0\lib\CORE" -machine:x86 XS.obj C:\cpanrun\build\5-10-0\lib\CORE\perl510.lib oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib version.lib odbc32.lib odbccp32.lib msvcrt.lib -def:XS.def Creating library blib\arch\auto\Class\C3\XS\XS.lib and object blib\arch\auto\Class\C3\XS\XS.exp C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Command -e chmod 755 blib\arch\auto\Class\C3\XS\XS.dll C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Command -e cp XS.bs blib\arch\auto\Class\C3\XS\XS.bs C:\cpanrun\build\5-10-0\bin\perl.exe "-Iinc" -MExtUtils::Command -e chmod 644 blib\arch\auto\Class\C3\XS\XS.bs Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. C:\cpanrun\build\5-10-0\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(1, 'inc', 'blib\lib', 'blib\arch')" t/00_load.t t/01_MRO.t t/02_MRO.t t/03_MRO.t t/04_MRO.t t/05_MRO.t t/30_next_method.t t/31_next_method_skip.t t/32_next_method_edge_cases.t t/33_next_method_used_with_NEXT.t t/34_next_method_in_eval.t t/35_next_method_in_anon.t t/36_next_goto.t t/pod.t t/00_load..........................1..1 ok 1 - use Class::C3::XS; ok t/01_MRO...........................1..2 ok 1 - use Class::C3::XS; ok 2 - ... got the right MRO for Diamond_D ok t/02_MRO...........................1..7 ok 1 - use Class::C3::XS; ok 2 - ... got the right MRO for Test::F ok 3 - ... got the right MRO for Test::E ok 4 - ... got the right MRO for Test::D ok 5 - ... got the right MRO for Test::C ok 6 - ... got the right MRO for Test::B ok 7 - ... got the right MRO for Test::A ok t/03_MRO...........................1..2 ok 1 - use Class::C3::XS; ok 2 - ... got the right MRO for Test::A ok t/04_MRO...........................1..2 ok 1 - use Class::C3::XS; ok 2 - ... got the right MRO for the Vulcan Dylan Example ok t/05_MRO...........................1..3 ok 1 - use Class::C3::XS; ok 2 - use t::lib::F; ok 3 - ... got the right MRO for t::lib::F ok t/30_next_method...................1..5 ok 1 - use Class::C3::XS; ok 2 - ... method resolved itself as expected ok 3 - ... can(method) resolved itself as expected ok 4 - ... can(method) resolved itself as expected ok 5 - ... method foo resolved itself as expected ok t/31_next_method_skip..............1..10 ok 1 - use Class::C3::XS; ok 2 - ... skipped B and went to C correctly ok 3 - ... skipped B & C and went to A correctly ok 4 - ... called B method, skipped C and went to A correctly ok 5 - ... called D method dispatched to , different method correctly ok 6 - ... cannot re-dispatch to a method which is not there ok 7 - ... can re-dispatch figured out correctly ok 8 - ... cannot re-dispatch figured out correctly ok 9 - ... redispatched D to C when it exists ok 10 - ... quietly failed redispatch from D ok t/32_next_method_edge_cases........1..12 ok 1 - use Class::C3::XS; ok 2 - The object isa Foo ok 3 - Foo->can('bar') ok 4 - ... got the right return value ok 5 - The object isa Bar ok 6 - The object isa Foo ok 7 - Bar->can('bar') ok 8 - ... calling bar() succedded ok 9 - ... got the right return value too ok 10 - The object isa Baz ok 11 - The object isa Foo ok 12 - ... calling bar() with next::method failed ok t/33_next_method_used_with_NEXT....1..4 ok 1 - ... got the right value from Foo->foo ok 2 - ... got the right value from Fuz->foo ok 3 - ... got the right value from Bar->foo ok 4 - ... got the right value using NEXT in a subclass of a C3 class ok t/34_next_method_in_eval...........1..2 ok 1 - use Class::C3::XS; ok 2 - method resolved inside eval{} ok t/35_next_method_in_anon...........1..3 ok 1 - use Class::C3::XS; ok 2 - method resolved inside anonymous sub ok 3 - method resolved inside nested anonymous subs ok t/36_next_goto.....................1..5 ok 1 - use Class::C3::XS; ok 2 - proxy next::method via goto ok 3 - proxy maybe::next::method via goto ok 4 - proxy maybe::next::method via goto with no method ok 5 - proxy next::can via goto ok t/pod..............................1..1 ok 1 - blib\lib\Class\C3\XS.pm ok All tests successful. Files=14, Tests=59, 3 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU) Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. Files found in blib\arch: installing files in blib\lib into architecture dependent library tree Installing C:\cpanrun\build\5-10-0\site\lib\auto\Class\C3\XS\XS.bs Installing C:\cpanrun\build\5-10-0\site\lib\auto\Class\C3\XS\XS.dll Installing C:\cpanrun\build\5-10-0\site\lib\auto\Class\C3\XS\XS.exp Installing C:\cpanrun\build\5-10-0\site\lib\auto\Class\C3\XS\XS.lib Installing C:\cpanrun\build\5-10-0\site\lib\auto\Class\C3\XS\XS.pdb Installing C:\cpanrun\build\5-10-0\html\site\lib\Class\C3\XS.html Installing C:\cpanrun\build\5-10-0\site\lib\Class\C3\XS.pm Appending installation info to C:\cpanrun\build\5-10-0\lib/perllocal.pod