tests: Remove leftover `pk'.
authorLudovic Courtès <ludo@gnu.org>
Wed, 19 Dec 2012 22:31:05 +0000 (23:31 +0100)
committerLudovic Courtès <ludo@gnu.org>
Wed, 19 Dec 2012 22:31:05 +0000 (23:31 +0100)
* test-suite/tests/posix.test ("system*"): Remove `pk'.

test-suite/tests/posix.test

index ebfb20e..00e9c68 100644 (file)
     ;; With Guile up to 2.0.7 included, the child process launched by
     ;; `system*' would remain alive after an `execvp' failure.
     (let ((me (getpid)))
-      (and (not (zero? (pk (system* "something-that-does-not-exist"))))
+      (and (not (zero? (system* "something-that-does-not-exist")))
            (= me (getpid))))))