diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 10:31:17 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-12 10:31:17 +0000 |
commit | 93430cb427caeba01ba89b008008b46159a7c165 (patch) | |
tree | 79da2af6fc75ad63ced4cd14b2bd7ba53dff2863 /t/lib/tie-push.t | |
parent | 9451cbc956e1f0c870763d52e6eb6cf210e91caf (diff) | |
download | perl-93430cb427caeba01ba89b008008b46159a7c165.tar.gz |
make testsuite somewhat location independent
p4raw-id: //depot/perl@2891
Diffstat (limited to 't/lib/tie-push.t')
-rwxr-xr-x | t/lib/tie-push.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/tie-push.t b/t/lib/tie-push.t index dd718deb14..23a0a9403a 100755 --- a/t/lib/tie-push.t +++ b/t/lib/tie-push.t @@ -2,7 +2,7 @@ BEGIN { chdir 't' if -d 't'; - @INC = '../lib'; + unshift @INC, '../lib'; } { @@ -21,4 +21,4 @@ tie @x,Basic; tie @get,Basic; tie @got,Basic; tie @tests,Basic; -require "../t/op/push.t" +require "op/push.t" |