summaryrefslogtreecommitdiff
path: root/t/run
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-11-08 12:23:20 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2014-11-08 14:31:39 -0500
commit177ee6a3ebda2fa85768cab5f086fd1e706fc36c (patch)
tree440394b87ef51a76d4dc5c28953cf9a4b29b1500 /t/run
parentf572e0f0bfae9b7df3b375a7cb25a3f64e1600ea (diff)
downloadperl-177ee6a3ebda2fa85768cab5f086fd1e706fc36c.tar.gz
Using bignum needs skip_if_miniperl().
Diffstat (limited to 't/run')
-rw-r--r--t/run/switchd.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/run/switchd.t b/t/run/switchd.t
index 1f11e8756d..5005b08245 100644
--- a/t/run/switchd.t
+++ b/t/run/switchd.t
@@ -3,10 +3,9 @@
BEGIN {
chdir 't' if -d 't';
@INC = qw(../lib lib);
+ require "./test.pl";
}
-BEGIN { require "./test.pl"; }
-
# This test depends on t/lib/Devel/switchd*.pm.
plan(tests => 20);
@@ -286,6 +285,8 @@ is(
'-d does not conflict with sort optimisations'
);
+SKIP: {
+ skip_if_miniperl("under miniperl", 1);
is(
runperl(
switches => [ '-Ilib', '-d:switchd_empty' ],
@@ -300,3 +301,4 @@ is(
"debugged\n",
"\$DB::single set to overload"
);
+}