diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2001-11-21 15:17:25 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-22 03:18:49 +0000 |
commit | 72c157b023d430ca1a19cb152e889432a114232b (patch) | |
tree | c1bb1d0af1a316a784cc010c78c38e1a5f7bfd0f /lib/Shell.t | |
parent | a74498e7e37acd5af89282863289d4ddfce2ae9c (diff) | |
download | perl-72c157b023d430ca1a19cb152e889432a114232b.tar.gz |
add Shell.t tests for VMS
Message-ID: <OF6DA93FFA.A954A0D4-ON85256B0C.0006DDF9@55.25.11>
p4raw-id: //depot/perl@13186
Diffstat (limited to 'lib/Shell.t')
-rw-r--r-- | lib/Shell.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Shell.t b/lib/Shell.t index 5ff0b16087..a285896e64 100644 --- a/lib/Shell.t +++ b/lib/Shell.t @@ -36,9 +36,9 @@ $Shell::capture_stderr = 0; # if ( $Is_VMS ) { - skip "Please implement VMS test", 2; - ok(1); - ok(1); + ok(directory(),'Execute command'); + my @files = directory('*.*'); + ok(@files,'Quoted arguments'); } elsif( $Is_MSWin32 ) { |