diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-20 02:25:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-20 02:25:04 -0700 |
commit | 47d5feb3175a8cd1dfb515c0f552eb50d2edad47 (patch) | |
tree | bc8b333fdb5fb31c9ba9ed606c20bb85f438e9ba /tests/017 | |
parent | e57078521f985202ba261acdff9a87044dd49572 (diff) | |
download | txr-47d5feb3175a8cd1dfb515c0f552eb50d2edad47.tar.gz txr-47d5feb3175a8cd1dfb515c0f552eb50d2edad47.tar.bz2 txr-47d5feb3175a8cd1dfb515c0f552eb50d2edad47.zip |
openbsd: fix tests.
* tests/014/socket-basic.tl (%iters%): Also reduce to 2000 on
OpenBSD, to avoid the default limit on UDP datagram size.
* tests/017/glob-carray.tl: Use the BSD-style struct glob-t
on OpenBSD also.
* tests/017/glob-zarray.tl: Likewise.
* tests/018/chmod.tl (os): New global variable.
(test-sticky): s-isvtx not allowed for non-root user on
OpenBSD, so we falsify this variable.
* tests/common.tl (os-symbol): Add OpenBSD case, producing
:openbsd keyword symbol.
(libc): Let's just use (dlopen nil) for any platform that isn't
Cygwin or Cygnal.
Diffstat (limited to 'tests/017')
-rw-r--r-- | tests/017/glob-carray.tl | 2 | ||||
-rw-r--r-- | tests/017/glob-zarray.tl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/017/glob-carray.tl b/tests/017/glob-carray.tl index 7913701b..3ce52980 100644 --- a/tests/017/glob-carray.tl +++ b/tests/017/glob-carray.tl @@ -12,7 +12,7 @@ (nil int) (pathv (carray str)) (nil (array 4 cptr))))) - ((:cygnal :cygwin :android) + ((:cygnal :cygwin :android :openbsd) (deffi-type glob-t (struct glob-t (pathc size-t) (nil size-t) diff --git a/tests/017/glob-zarray.tl b/tests/017/glob-zarray.tl index e3f6d08b..4b804167 100644 --- a/tests/017/glob-zarray.tl +++ b/tests/017/glob-zarray.tl @@ -12,7 +12,7 @@ (nil int) (pathv (ptr-out (zarray str))) (nil (array 4 cptr))))) - ((:cygnal :cygwin :android) + ((:cygnal :cygwin :android :openbsd) (deffi-type glob-t (struct glob-t (pathc size-t) (nil size-t) |