t/op/index.t See if index works
t/op/int.t See if int works
t/op/join.t See if join works
+t/op/kill0.t See if kill(0, $pid) works
t/op/lc.t See if lc, uc, lcfirst, ucfirst, quotemeta work
t/op/lc_user.t See if user-defined lc et alia work
t/op/length.t See if length works
--- /dev/null
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+ require './test.pl';
+}
+
+BEGIN {
+ if ($^O eq 'riscos') {
+ skip_all("kill() not implemented on this platform");
+ }
+}
+
+use strict;
+
+plan tests => 2;
+
+ok( kill(0, $$), 'kill(0, $pid) returns true if $pid exists' );
+
+# It's not easy to come up with an individual PID that is known not to exist,
+# so just check that at least some PIDs in a large range are reported not to
+# exist.
+my $count = 0;
+my $total = 30_000;
+for my $pid (1 .. $total) {
+ ++$count if kill(0, $pid);
+}
+# It is highly unlikely that all of the above PIDs are genuinely in use,
+# so $count should be less than $total.
+ok( $count < $total, 'kill(0, $pid) returns false if $pid does not exist' );