1PARROT-PROVE(1) User Contributed Perl Documentation PARROT-PROVE(1)
2
3
4
6 parrot-prove - Prove is a PIR-based TAP (Test Anything Protocol)
7 Harness
8
10 parrot-prove [option] [files]
11
13 It eats test output (i.e. is a TAP consumer) and tells humans if the
14 test suite passed, and if not, which kind of pretty colors of smoke
15 came out. It is mostly equivalent to 'prove' from Perl 5.
16
17 Command line boolean options
18 To print all test lines use :
19
20 -v
21 --verbose
22
23 To run the tests in random order use :
24
25 -s
26 --shuffle
27
28 To show failed tests use :
29
30 -f
31 --failures
32
33 To show comments use :
34
35 -o
36 --comments
37
38 To ignore exit status from test scripts use :
39
40 --ignore-exit
41
42 To merge test scripts STDERR with their STDOUT use :
43
44 -m
45 --merge
46
47 To run tests in reverse order use :
48
49 --reverse
50
51 To suppress some test output while running tests use :
52
53 -q
54 --quiet
55
56 To print only summary result use :
57
58 -Q
59 --QUIET
60
61 To show only results with TODO or SKIP directives use :
62
63 --directives
64
65 To normalize TAP output in verbose output use :
66
67 --normalize
68
69 To display help use :
70
71 -h
72 --help
73
74 To display version use :
75
76 -v
77 --version
78
79 Command line options that take arguments
80 To interpreter to run the tests (' ' for compiled tests.) use :
81
82 -e
83 --exec
84
85 To store the resulting TAP in an archive file use :
86
87 -a
88 --archive
89
91 For more help or any other question you go to <http://parrot.org> or
92 <http://github.com/parrot/parrot>.Or you can send email to
93 'parrot-dev@parrot.org'. You are also invited to join the #parrot IRC
94 channel on irc.parrot.org.
95
96
97
98perl v5.28.0 2014-10-21 PARROT-PROVE(1)