[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 12/13: avoid a ports test when fcntl is not provided
From: |
Mike Gran |
Subject: |
[Guile-commits] 12/13: avoid a ports test when fcntl is not provided |
Date: |
Thu, 21 Jan 2021 19:06:18 -0500 (EST) |
mike121 pushed a commit to branch master
in repository guile.
commit c65154ac69dcabcaaba4f20f1adb464d9b5b1a23
Author: Michael Gran <spk121@yahoo.com>
AuthorDate: Wed Dec 30 05:39:33 2020 -0800
avoid a ports test when fcntl is not provided
* test-suite/tests/ports.test (non blocking I/O): disable test when fcntl
is not provided
---
test-suite/tests/ports.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test-suite/tests/ports.test b/test-suite/tests/ports.test
index bd7a927..9aa486e 100644
--- a/test-suite/tests/ports.test
+++ b/test-suite/tests/ports.test
@@ -660,7 +660,7 @@
(close-fdes fdes)
#t))))
-(when (provided? 'threads)
+(when (and (provided? 'threads) (provided? 'fcntl))
(let* ((p (pipe))
(r (car p))
(w (cdr p)))
- [Guile-commits] 02/13: for socket test, don't presume TMP is usable, (continued)
- [Guile-commits] 02/13: for socket test, don't presume TMP is usable, Mike Gran, 2021/01/21
- [Guile-commits] 01/13: encoding test tries to delete a file that is not closed, Mike Gran, 2021/01/21
- [Guile-commits] 04/13: in command line encoding test don't presume extant UTF-8 locale, Mike Gran, 2021/01/21
- [Guile-commits] 03/13: skip compile test when pause not available, Mike Gran, 2021/01/21
- [Guile-commits] 06/13: test-foreign-object-c should link libgnu, Mike Gran, 2021/01/21
- [Guile-commits] 05/13: for dynamic-link tests, mingw needs to link to msvcrt, Mike Gran, 2021/01/21
- [Guile-commits] 07/13: missing includes for list.h, Mike Gran, 2021/01/21
- [Guile-commits] 08/13: Need Guile and Windows types for the declarations posix-w32, Mike Gran, 2021/01/21
- [Guile-commits] 09/13: in null threads, don't define sigmask stub when pthread_sigmask does not exist, Mike Gran, 2021/01/21
- [Guile-commits] 11/13: standalone tests require libgnu on DLL-based platforms, Mike Gran, 2021/01/21
- [Guile-commits] 12/13: avoid a ports test when fcntl is not provided,
Mike Gran <=
- [Guile-commits] 10/13: skip version test if git-version-gen can't compute version from git, Mike Gran, 2021/01/21
- [Guile-commits] 13/13: socket test should not throw unresolved outside of a test, Mike Gran, 2021/01/21