summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2021-03-17 15:43:53 +1100
committerJames E Keenan <jkeenan@cpan.org>2021-03-19 18:51:13 -0400
commit1856694a9e2cc2302cb25649837deb6f7435e0f8 (patch)
tree25b4b843fc5af35292cdb7b93f3acb19981f032b
parent2e63b51a1ce2243da015983e9253835ebea2bee7 (diff)
downloadperl-1856694a9e2cc2302cb25649837deb6f7435e0f8.tar.gz
we no longer need to setup @INC
-rw-r--r--t/opbasic/arith.t10
1 files changed, 0 insertions, 10 deletions
diff --git a/t/opbasic/arith.t b/t/opbasic/arith.t
index 7f4f1f290b..e5099377b1 100644
--- a/t/opbasic/arith.t
+++ b/t/opbasic/arith.t
@@ -1,15 +1,5 @@
#!./perl -w
-BEGIN {
- chdir 't' if -d 't';
- # we can't use test.pl here (see the comment below)
- #require './test.pl';
- #set_up_inc('../lib');
- # so inline set_up_inc() and its call to is_miniperl
- @INC = () if defined &DynaLoader::boot_DynaLoader;
- unshift @INC, "../lib";
-}
-
# This file has been placed in t/opbasic to indicate that it should not use
# functions imported from t/test.pl or Test::More, as those programs/libraries
# use operators which are what is being tested in this file.