summaryrefslogtreecommitdiffstats
path: root/tests/common.tl
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-12-23 19:37:12 -0800
committerKaz Kylheku <kaz@kylheku.com>2020-12-23 19:37:12 -0800
commitd236fbed3338996fd6ed7791178f5c1972864b50 (patch)
treedcc4c2cc64349ea730fbecbb3861313f44088e1a /tests/common.tl
parenta2ae08b22f7ffc41f3bef42f2437dc2a2d4f99ed (diff)
downloadtxr-d236fbed3338996fd6ed7791178f5c1972864b50.tar.gz
txr-d236fbed3338996fd6ed7791178f5c1972864b50.tar.bz2
txr-d236fbed3338996fd6ed7791178f5c1972864b50.zip
android: fix socket module, failing tests.
* socket.c: Add missing #include <netinet/in.h>. * tests/017/glob-carray.tl, tests/017/glob-zarray.tl: Use same definition for struct glob as Cygwin. Both are of BSD origin. * tests/017/realpath.tl: Do not test on Android. * tests/common.tl (os-symbol): Detect Android and return :android. (libc): Handle :android.
Diffstat (limited to 'tests/common.tl')
-rw-r--r--tests/common.tl20
1 files changed, 11 insertions, 9 deletions
diff --git a/tests/common.tl b/tests/common.tl
index 3eef8d31..cdfc6c6a 100644
--- a/tests/common.tl
+++ b/tests/common.tl
@@ -24,16 +24,18 @@
^(progn ,*(mapcar (op cons 'test) (tuples 2 pairs))))
(defun os-symbol ()
- (let ((u (uname)))
- [(orf (iff (f^ #/Linux/) (ret :linux))
- (iff (f^ #/SunOS/) (ret :solaris))
- (iff (f^ #/CYGWIN/) (ret :cygwin))
- (iff (f^ #/CYGNAL/) (ret :cygnal))
- (iff (f^ #/Darwin/) (ret :macos))
- (ret :unknown))
- u.sysname]))
+ (if (ignerr (dlsym (dlopen "libandroid.so") "AAsset_close"))
+ :android
+ (let ((u (uname)))
+ [(orf (iff (f^ #/Linux/) (ret :linux))
+ (iff (f^ #/SunOS/) (ret :solaris))
+ (iff (f^ #/CYGWIN/) (ret :cygwin))
+ (iff (f^ #/CYGNAL/) (ret :cygnal))
+ (iff (f^ #/Darwin/) (ret :macos))
+ (ret :unknown))
+ u.sysname])))
(defun libc ()
(caseql (os-symbol)
- ((:linux :solaris :macos) (dlopen nil))
+ ((:linux :solaris :macos :android) (dlopen nil))
((:cygwin) (dlopen "cygwin1.dll"))))