]> gitweb.factorcode.org Git - factor.git/commitdiff
io.standard-paths.unix: ifconfig isnt installed everywhere, but ps is
authorBjörn Lindqvist <bjourne@gmail.com>
Sun, 2 Jul 2017 15:17:46 +0000 (17:17 +0200)
committerBjörn Lindqvist <bjourne@gmail.com>
Sun, 2 Jul 2017 15:17:46 +0000 (17:17 +0200)
basis/io/standard-paths/unix/unix-tests.factor

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