blob: 709608e9644e19e814bc7dd8a26c85233fa667b2 (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
$! Test.Com - DCL wrapper for perl5 regression test driver
$!
$! Version 2.0 25-April-2002 Craig Berry craigberry@mac.com
$! (and many other hands in the last 7+ years)
$! The most significant difference is that we now run the external t/TEST
$! rather than keeping a separately maintained test driver embedded here.
$!
$! Version 1.1 4-Dec-1995
$! Charles Bailey bailey@newman.upenn.edu
$!
$! Set up error handler and save things we'll restore later.
$ On Control_Y Then Goto Control_Y_exit
$ On Error Then Goto wrapup
$ olddef = F$Environment("Default")
$ oldmsg = F$Environment("Message")
$ oldpriv = F$SetPrv("NOALL") ! downgrade privs for safety
$ discard = F$SetPrv("NETMBX,TMPMBX") ! only need these to run tests
$!
$! Process arguments. P1 is the file extension of the Perl images.
$! P2, when not empty, indicates that we are testing a version of Perl built
$! for the VMS debugger. The other arguments are passed directly to t/TEST.
$!
$ exe = ".Exe"
$ If p1.nes."" Then exe = p1
$ If F$Extract(0,1,exe) .nes. "."
$ Then
$ Write Sys$Error ""
$ Write Sys$Error "The first parameter passed to Test.Com must be the file type used for the"
$ Write Sys$Error "images produced when you built Perl (i.e. "".Exe"", unless you edited"
$ Write Sys$Error "Descrip.MMS or used the AXE=1 macro in the MM[SK] command line."
$ Write Sys$Error ""
$ $status = 44
$ goto wrapup
$ EndIf
$!
$! "debug" perl if second parameter is nonblank
$!
$ dbg = ""
$ ndbg = ""
$ if p2.nes."" then dbg = "dbg"
$ if p2.nes."" then ndbg = "ndbg"
$!
$! Run using "TEST." unless something else (e.g. "harness.") was specified.
$ If F$Type(PERL_TEST_DRIVER) .eqs. "" Then PERL_TEST_DRIVER == "TEST."
$!
$! Make sure we are where we need to be.
$ If F$Search("t.dir").nes.""
$ Then
$ Set Default [.t]
$ Else
$ If F$TrnLNm("Perl_Root").nes.""
$ Then
$ Set Default Perl_Root:[t]
$ Else
$ Write Sys$Error "Can't find test directory"
$ $status = 44
$ goto wrapup
$ EndIf
$ EndIf
$!
$! Pick up a copy of perl to use for the tests
$ If F$Search("Perl''exe'").nes."" Then Delete/Log/NoConfirm Perl'exe';*
$ If PERL_TEST_DRIVER .eqs. "minitest"
$ Then
$ Copy/Log/NoConfirm [-]miniperl'exe' []Perl'exe'
$ Else
$ Copy/Log/NoConfirm [-]'ndbg'Perl'exe' []Perl'exe'
$ EndIf
$!
$! Pick up a copy of vmspipe.com to use for the tests
$ If F$Search("VMSPIPE.COM").nes."" then Delete/Log/Noconfirm VMSPIPE.COM;*
$ Copy/Log/NoConfirm [-]VMSPIPE.COM []
$!
$! This may be set for the C compiler in descrip.mms, but it confuses the File::Find tests
$ if f$trnlnm("sys") .nes. "" then Define sys " "
$!
$! And do it
$ Set Message /NoFacility/NoSeverity/NoIdentification/NoText
$ Show Process/Accounting
$ testdir = "Directory/NoHead/NoTrail/Column=1"
$ PerlShr_filespec = f$parse("Sys$Disk:[-]''dbg'PerlShr''exe'")
$ Define 'dbg'Perlshr 'PerlShr_filespec'
$ If F$Mode() .nes. "INTERACTIVE" Then Define/Nolog PERL_SKIP_TTY_TEST 1
$ If PERL_TEST_DRIVER .eqs. "minitest"
$ Then
$ MCR Sys$Disk:[]Perl'exe' TEST. "base/*.t" "comp/*.t" "cmd/*.t" "run/*.t" "io/*.t" "op/*.t" "uni/*.t"
$ Else
$ MCR Sys$Disk:[]Perl'exe' "-I[-.lib]" 'PERL_TEST_DRIVER' "''p3'" "''p4'" "''p5'" "''p6'" "''p7'"
$ EndIf
$ goto wrapup
$!
$ Control_Y_exit:
$ $status = 1552 ! %SYSTEM-W-CONTROLY
$!
$ wrapup:
$ status = $status
$ If f$trnlnm("''dbg'PerlShr") .nes. "" Then DeAssign 'dbg'PerlShr
$ Show Process/Accounting
$ If f$type(olddef) .nes. "" Then Set Default &olddef
$ If f$type(oldmsg) .nes. "" Then Set Message 'oldmsg'
$ If f$type(oldpriv) .nes. "" Then discard = F$SetPrv(oldpriv)
$ Exit status
|