blob: 6438d13176882118597fec0e58a5c94955d51a2d (
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
|
#!./perl
print "1..22\n";
BEGIN { unshift @INC, '../lib' }
use English qw( -no_match_vars ) ;
use Config;
my $threads = $Config{'use5005threads'} || 0;
print $PID == $$ ? "ok 1\n" : "not ok 1\n";
$_ = 1;
print $ARG == $_ || $threads ? "ok 2\n" : "not ok 2\n";
sub foo {
print $ARG[0] == $_[0] || $threads ? "ok 3\n" : "not ok 3\n";
}
&foo(1);
"abc" =~ /b/;
print ! $PREMATCH ? "" : "not ", "ok 4\n" ;
print ! $MATCH ? "" : "not ", "ok 5\n" ;
print ! $POSTMATCH ? "" : "not ", "ok 6\n" ;
$OFS = " ";
$ORS = "\n";
print 'ok',7;
undef $OUTPUT_FIELD_SEPARATOR;
if ($threads) { $" = "\n" } else { $LIST_SEPARATOR = "\n" };
@foo = ("ok 8", "ok 9");
print "@foo";
undef $OUTPUT_RECORD_SEPARATOR;
eval 'NO SUCH FUNCTION';
print "ok 10\n" if $EVAL_ERROR =~ /method/ || $threads;
print $UID == $< ? "ok 11\n" : "not ok 11\n";
print $GID == $( ? "ok 12\n" : "not ok 12\n";
print $EUID == $> ? "ok 13\n" : "not ok 13\n";
print $EGID == $) ? "ok 14\n" : "not ok 14\n";
print $PROGRAM_NAME eq $0 ? "ok 15\n" : "not ok 15\n";
print $BASETIME == $^T ? "ok 16\n" : "not ok 16\n";
package B ;
use English ;
"abc" =~ /b/;
print $PREMATCH ? "" : "not ", "ok 17\n" ;
print $MATCH ? "" : "not ", "ok 18\n" ;
print $POSTMATCH ? "" : "not ", "ok 19\n" ;
package C ;
use English qw( -no_match_vars ) ;
"abc" =~ /b/;
print ! $PREMATCH ? "" : "not ", "ok 20\n" ;
print ! $MATCH ? "" : "not ", "ok 21\n" ;
print ! $POSTMATCH ? "" : "not ", "ok 22\n" ;
|