# New Ticket Created by Zoffix Znet # Please include the string: [perl #130518] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=130518 >
TAP v12 spec[^1] shows the following as an example as TAP output that can be used to skip all tests with description: 1..0 # Skipped: WWW::Mechanize not installed However, trying to run TAP::Harness with such output crashes it with some failed internal typecheck: zoffix@VirtualBox:~/CPANPRC/Standard-Rakudo$ cat t.p6 say "1..0 # Skipped: WWW::Mechanize not installed" zoffix@VirtualBox:~/CPANPRC/Standard-Rakudo$ ./perl6 -e 'use TAP; await TAP::Harness.new.run("t.p6").waiter;' Tried to get the result of a broken Promise in block <unit> at -e line 1 Original exception: Type check failed in assignment to $!explanation; expected Str but got Any (Any) in method plan at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 224 in any !reduce at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/nqp/lib/QRegex.moarvm line 1 in regex plan at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 172 in regex line at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 169 in regex TOP at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 166 in any call_with_args at gen/moar/Metamodel.nqp line 3889 in method subparse at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 270 in method add-data at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 281 in block at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 880 in method run at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 852 in block at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 1034 in block at /home/zoffix/CPANPRC/Standard-Rakudo/install/share/perl6/sources/4CE2F6717405FCBF7F9D888C3BDF76C1127F8CB1 (TAP) line 1029 zoffix@VirtualBox:~/CPANPRC/Standard-Rakudo$ [1] https://testanything.org/tap-specification.html