summaryrefslogtreecommitdiffstats
path: root/tests/017/glob-zarray.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/017/glob-zarray.tl')
-rw-r--r--tests/017/glob-zarray.tl19
1 files changed, 14 insertions, 5 deletions
diff --git a/tests/017/glob-zarray.tl b/tests/017/glob-zarray.tl
index b6e16d13..0597da86 100644
--- a/tests/017/glob-zarray.tl
+++ b/tests/017/glob-zarray.tl
@@ -1,12 +1,21 @@
(load "../common")
(defstruct glob-t nil
- pathc pathv reserve)
+ pathc pathv (reserve 0))
-(deffi-type glob-t (struct glob-t
- (pathc size-t)
- (pathv (ptr-out-d (zarray str-d)))
- (reserve size-t)))
+(cond
+ ((eq (os-symbol) :macos)
+ (deffi-type glob-t (struct glob-t
+ (pathc size-t)
+ (nil int)
+ (nil size-t)
+ (nil int)
+ (pathv (ptr-out-d (zarray str-d)))
+ (nil (array 4 cptr)))))
+ (t (deffi-type glob-t (struct glob-t
+ (pathc size-t)
+ (pathv (ptr-out-d (zarray str-d)))
+ (reserve size-t)))))
(with-dyn-lib (libc)
(deffi globb "glob" int (str int closure (ptr-out glob-t)))