diff options
-rwxr-xr-x | t/op/magic.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/op/magic.t b/t/op/magic.t index e2acb1f641..c2a82115b4 100755 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -189,9 +189,11 @@ if ($Is_VMS || $Is_Dos) { } else { $PATH = $ENV{PATH}; + $PDL = $ENV{PERL_DESTRUCT_LEVEL} || 0; $ENV{foo} = "bar"; %ENV = (); $ENV{PATH} = $PATH; + $ENV{PERL_DESTRUCT_LEVEL} = $PDL || 0; ok 29, ($Is_MSWin32 ? (`cmd /x /c set foo 2>NUL` eq "") : (`echo \$foo` eq "\n") ); |