From ea9ac5adc156dc923a1815b0059ca759e5ced3f0 Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Mon, 11 Feb 2002 11:13:47 -0600 Subject: [PATCH] t/test.pl fix for VMS Message-Id: <5.1.0.14.2.20020211170332.01b94e88@exchi01> p4raw-id: //depot/perl@14651 --- t/test.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/test.pl b/t/test.pl index be052b5..351963a 100644 --- a/t/test.pl +++ b/t/test.pl @@ -272,7 +272,7 @@ sub _quote_args { foreach (@$args) { # In VMS protect with doublequotes because otherwise # DCL will lowercase -- unless already doublequoted. - $_ = q(").$_.q(") if $is_vms && !/^\"/; + $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0; $$runperl .= ' ' . $_; } } -- 2.7.4