If the comment says "(and not ours)" then it should be tested.
Nicholas Clark [Sat, 1 Apr 2006 15:21:56 +0000 (15:21 +0000)]
p4raw-id: //depot/perl@27662

t/op/getppid.t

index cb069ff..70c5a32 100644 (file)
@@ -23,7 +23,7 @@ BEGIN {
        }
     }
     require './test.pl';
-    plan (7);
+    plan (8);
 }
 
 sub fork_and_retrieve {
@@ -69,3 +69,4 @@ sub fork_and_retrieve {
 my $first = fork_and_retrieve("first");
 my $second = fork_and_retrieve("second");
 is ($first, $second, "Both orphaned grandchildren get the same new parent");
+isnt ($first, $$, "And that new parent isn't this process");