summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/POSIX/t/sigaction.t2
-rw-r--r--ext/POSIX/t/waitpid.t4
-rwxr-xr-xt/op/method.t2
-rwxr-xr-xt/op/sub_lval.t5
-rwxr-xr-xt/op/ver.t4
-rw-r--r--t/run/fresh_perl.t2
6 files changed, 8 insertions, 11 deletions
diff --git a/ext/POSIX/t/sigaction.t b/ext/POSIX/t/sigaction.t
index d280d686b9..63ff17dae3 100644
--- a/ext/POSIX/t/sigaction.t
+++ b/ext/POSIX/t/sigaction.t
@@ -8,7 +8,7 @@ BEGIN {
BEGIN{
# Don't do anything if POSIX is missing, or sigaction missing.
use Config;
- eval { use POSIX; };
+ eval 'use POSIX';
if($@ || $^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'dos' ||
$^O eq 'MacOS' || ($^O eq 'VMS' && !$Config{'d_sigaction'})) {
print "1..0\n";
diff --git a/ext/POSIX/t/waitpid.t b/ext/POSIX/t/waitpid.t
index e1633712e6..c36a611bfc 100644
--- a/ext/POSIX/t/waitpid.t
+++ b/ext/POSIX/t/waitpid.t
@@ -9,12 +9,12 @@ BEGIN {
print "1..0 # Skip: no fork\n";
exit 0;
}
- eval { use POSIX qw(sys_wait_h) };
+ eval 'use POSIX qw(sys_wait_h)';
if ($@) {
print "1..0 # Skip: no POSIX sys_wait_h\n";
exit 0;
}
- eval { use Time::HiRes qw(time) };
+ eval 'use Time::HiRes qw(time)';
if ($@) {
print "1..0 # Skip: no Time::HiRes\n";
exit 0;
diff --git a/t/op/method.t b/t/op/method.t
index 52fb705fb8..ae8031a9f6 100755
--- a/t/op/method.t
+++ b/t/op/method.t
@@ -231,7 +231,7 @@ is( Foo->boogie(), "yes, sir!");
# This is actually testing parsing of indirect objects and undefined subs
# print foo("bar") where foo does not exist is not an indirect object.
# print foo "bar" where foo does not exist is an indirect object.
-eval { sub AUTOLOAD { "ok ", shift, "\n"; } };
+eval 'sub AUTOLOAD { "ok ", shift, "\n"; }';
ok(1);
# Bug ID 20010902.002
diff --git a/t/op/sub_lval.t b/t/op/sub_lval.t
index a17c3c62c5..003c1a0a50 100755
--- a/t/op/sub_lval.t
+++ b/t/op/sub_lval.t
@@ -423,10 +423,7 @@ $a->() = 8;
print "# '$nnewvar'.\nnot " unless $nnewvar eq '8';
print "ok 46\n";
-# This must happen at run time
-eval {
- sub AUTOLOAD : lvalue { $newvar };
-};
+eval 'sub AUTOLOAD : lvalue { $newvar }';
foobar() = 12;
print "# '$newvar'.\nnot " unless $newvar eq "12";
print "ok 47\n";
diff --git a/t/op/ver.t b/t/op/ver.t
index 5cf97a8b9b..acf6af7f35 100755
--- a/t/op/ver.t
+++ b/t/op/ver.t
@@ -13,7 +13,7 @@ use Config;
require "test.pl";
plan( tests => 50 );
-eval { use v5.5.640; };
+eval 'use v5.5.640';
is( $@, '', "use v5.5.640; $@");
require_ok('v5.5.640');
@@ -52,7 +52,7 @@ is(v1.20.300.4000, "\x{1}\x{14}\x{12c}\x{fa0}",'compare embedded \x{} string');
#
# now do the same without the "v"
-eval { use 5.5.640; };
+eval 'use 5.5.640';
is( $@, '', "use 5.5.640; $@");
require_ok('5.5.640');
diff --git a/t/run/fresh_perl.t b/t/run/fresh_perl.t
index 2f8baa6df4..a0f707ff05 100644
--- a/t/run/fresh_perl.t
+++ b/t/run/fresh_perl.t
@@ -89,7 +89,7 @@ $x=2;$y=3;$x<$y ? $x : $y += 23;print $x;
EXPECT
25
########
-eval {sub bar {print "In bar";}}
+eval 'sub bar {print "In bar"}';
########
system './perl -ne "print if eof" /dev/null' unless $^O eq 'MacOS'
########