about summary refs log tree commit diff
path: root/pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch')
-rw-r--r--pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch b/pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch
deleted file mode 100644
index 10f812e3814a..000000000000
--- a/pkgs/development/compilers/factor-lang/adjust-paths-in-unit-tests.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From da8a4b9c1094a568f443c525ca1ce11f686be1bc Mon Sep 17 00:00:00 2001
-From: timor <timor.dd@googlemail.com>
-Date: Thu, 8 Aug 2019 14:13:09 +0200
-Subject: [PATCH] adjust unit test for finding executables in path for NixOS
-
----
- basis/io/standard-paths/unix/unix-tests.factor | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/basis/io/standard-paths/unix/unix-tests.factor b/basis/io/standard-paths/unix/unix-tests.factor
-index acd5029..870537f 100644
---- a/basis/io/standard-paths/unix/unix-tests.factor
-+++ b/basis/io/standard-paths/unix/unix-tests.factor
-@@ -5,13 +5,13 @@ sequences tools.test ;
-
- { f } [ "" find-in-path ] unit-test
- { t } [
--    "ls" find-in-path { "/bin/ls" "/usr/bin/ls" } member?
-+    "ls" find-in-path not not
- ] unit-test
-
- { t } [
-     "/sbin:" "PATH" os-env append "PATH" [
-         "ps" find-in-path
--        { "/bin/ps" "/sbin/ps" "/usr/bin/ps" } member?
-+        not not
-     ] with-os-env
- ] unit-test