Remove package; (Heh heh.)
[p5sagit/p5-mst-13.2.git] / t / op / anonsub.t
index aa25de0..893a726 100755 (executable)
@@ -5,6 +5,7 @@ chdir 't' if -d 't';
 $Is_VMS = $^O eq 'VMS';
 $Is_MSWin32 = $^O eq 'MSWin32';
 $Is_MacOS = $^O eq 'MacOS';
+$Is_NetWare = $^O eq 'NetWare';
 $ENV{PERL5LIB} = "../lib" unless $Is_VMS;
 
 $|=1;
@@ -25,14 +26,16 @@ for (@prgs){
     my($prog,$expected) = split(/\nEXPECT\n/, $_);
     open TEST, ">$tmpfile";
     print TEST "$prog\n";
-    close TEST;
+    close TEST or die "Could not close: $!";
     my $results = $Is_VMS ?
                `MCR $^X "-I[-.lib]" $switch $tmpfile 2>&1` :
                  $Is_MSWin32 ?
                    `.\\perl -I../lib $switch $tmpfile 2>&1` :
                      $Is_MacOS ?  
                        `$^X -I::lib $switch $tmpfile` :
-                         `./perl $switch $tmpfile 2>&1`;
+                           $Is_NetWare ?
+                               `perl -I../lib $switch $tmpfile 2>&1` :
+                                   `./perl $switch $tmpfile 2>&1`;
     my $status = $?;
     $results =~ s/\n+$//;
     # allow expected output to be written as if $prog is on STDIN
@@ -94,3 +97,7 @@ sub X {
 X();
 EXPECT
 ok 1
+########
+print sub { return "ok 1\n" } -> ();
+EXPECT
+ok 1