Skip to content

Commit b8a63e8

Browse files
committed
fudged
1 parent a4c9cf0 commit b8a63e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

base/term.t

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
BEGIN {
44
chdir 't' if -d 't';
5+
require './test.pl';
56
}
67

78
print "1..7\n";

op/cond.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
BEGIN {
44
chdir 't' if -d 't';
5-
# @INC = '../lib';
6-
# require './test.pl';
5+
@INC = '../lib';
6+
require './test.pl';
77
}
88

99
is( 1 ? 1 : 0, 1, 'compile time, true' );

op/sleep.t

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
BEGIN {
44
chdir 't' if -d 't';
5-
# @INC = qw(. ../lib);
5+
@INC = qw(. ../lib);
66
}
77

8-
#require "test.pl";
9-
#plan( tests => 4 );
10-
print "1..4\n";
8+
require "test.pl";
9+
plan( tests => 4 );
1110

1211
use strict;
1312
use warnings;

0 commit comments

Comments
 (0)