]> gitweb.factorcode.org Git - factor.git/commitdiff
io.standard-paths.unix: ofc /bin/ps should be included...
authorBjörn Lindqvist <bjourne@gmail.com>
Sun, 2 Jul 2017 22:56:55 +0000 (00:56 +0200)
committerBjörn Lindqvist <bjourne@gmail.com>
Sun, 2 Jul 2017 22:56:55 +0000 (00:56 +0200)
basis/io/standard-paths/unix/unix-tests.factor

index 036f6cca8ec37a08a3e9f38613caf3f0bdd60542..7ea520eabb162d4b71a6924e7cc2ffc7359b45fc 100644 (file)
@@ -10,11 +10,8 @@ IN: io.standard-paths.unix.tests
 ] unit-test
 
 { t } [
-    ! On Ubuntu, the path is ``/sbin/ifconfig``, however
-    ! find-in-path uses the PATH environment variable which does
-    ! not include this directory, so we do.
     "/sbin:" "PATH" os-env append "PATH" [
         "ps" find-in-path
-        { "/sbin/ps" "/usr/bin/ps" } member?
+        { "/bin/ps" "/sbin/ps" "/usr/bin/ps" } member?
     ] with-os-env
 ] unit-test