diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-08-13 06:42:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-08-13 06:42:05 -0700 |
commit | 3d7e614022c19d0c42ff32d60c8e51b226fb427d (patch) | |
tree | 175bc721a46cd6f566a0ea655537a00435e6e5b2 /tests/common.tl | |
parent | 60974f60baa03cfd055bc77d075ae6dcf70d984e (diff) | |
download | txr-3d7e614022c19d0c42ff32d60c8e51b226fb427d.tar.gz txr-3d7e614022c19d0c42ff32d60c8e51b226fb427d.tar.bz2 txr-3d7e614022c19d0c42ff32d60c8e51b226fb427d.zip |
tests: support BSD flavors loosely, not just OpenBSD.
* tests/common.tl (os-symbol): Look for the substring BSD in
the system name, and map to symbol :bsd. Do not produce
the :openbsd symbol.
* tests/014/socket-basic.tl: Refer to :bsd, not :openbsd.
* tests/017/glob-carray.tl: Likewise.
* tests/018/chmod.tl: Likewise.
Diffstat (limited to 'tests/common.tl')
-rw-r--r-- | tests/common.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/common.tl b/tests/common.tl index b94960cf..5ad35935 100644 --- a/tests/common.tl +++ b/tests/common.tl @@ -74,7 +74,7 @@ (iff (f^ #/CYGWIN/) (ret :cygwin)) (iff (f^ #/CYGNAL/) (ret :cygnal)) (iff (f^ #/Darwin/) (ret :macos)) - (iff (f^ #/OpenBSD/) (ret :openbsd)) + (iff #/BSD/ (ret :bsd)) (ret :unknown)) u.sysname]))) |