-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test.bat
65 lines (51 loc) · 994 Bytes
/
Test.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
perl -w -e "unlink qw(./Debian_CPANTS.txt ./MANIFEST ./META.json), glob './*.ppd'"
perl Build.PL
call ./Build realclean
echo -- AUTHOR_DIST=tar.gz --
set AUTHOR_DIST=tar.gz
perl Build.PL
echo -- test --
pause
set AUTHOR_TESTING=1
call ./Build test verbose=0
set AUTHOR_TESTING=
echo -- testpod --
pause
call ./Build testpod
echo -- testpodcoverage --
pause
call ./Build testpodcoverage
echo -- testcover --
pause
call ./Build testcover
echo -- manifest --
pause
call ./Build manifest
echo -- dist --
pause
call ./Build dist
echo -- distcheck --
pause
call ./Build distcheck
perl -e "use Test::Distribution"
echo -- test Kwalitee --
pause
perl -w -e "use Test::More;use Test::Kwalitee"
echo -- prereq_report --
pause
call ./Build prereq_report
set RELEASE_TESTING=1
perl t/prereq_build.t
set RELEASE_TESTING=
echo -- AUTHOR_DIST=ppm --
pause
set AUTHOR_DIST=ppm
perl Build.PL
echo -- ppmdist --
pause
call ./Build ppmdist
echo -- ppd --
pause
call ./Build ppd
echo -- END --
pause