diff options
Diffstat (limited to 'ext/POSIX/t/waitpid.t')
-rw-r--r-- | ext/POSIX/t/waitpid.t | 4 |
1 files changed, 2 insertions, 2 deletions
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; |