tests: Clisp has POSIX:UID, not POSIX:GETUID
authorNikodemus Siivola <nikodemus@random-state.net>
Fri, 30 Mar 2012 14:12:06 +0000 (17:12 +0300)
committerNikodemus Siivola <nikodemus@random-state.net>
Fri, 30 Mar 2012 14:12:06 +0000 (17:12 +0300)
  Thanks to Timo Myyrä.

tests/tests.lisp

index 2710a8f..7d0c399 100644 (file)
@@ -59,6 +59,6 @@
 (defun our-getuid ()
   #+sbcl (sb-unix:unix-getuid)
   #+cmu (unix:unix-getuid)
-  #+clisp (posix:getuid)
+  #+clisp (posix:uid)
   #+allegro (excl.osi:getuid)
   #-(or sbcl cmu clisp allegro) 0) ; A sane enough default for testing?