aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-25 09:46:50 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-25 09:46:50 +0200
commit6b0d363b6a5461471c98611b63b7fb172a8e25e8 (patch)
tree23c28898ffbd6a2dfcc6d5afe27a341bde6041e3 /example
parentb29faad9dbd0016160b9ac9d136e3dd84f926470 (diff)
examples/{ioctl,null}: don't build under FreeBSD instead of skipping tests.
Diffstat (limited to 'example')
-rw-r--r--example/meson.build14
1 files changed, 8 insertions, 6 deletions
diff --git a/example/meson.build b/example/meson.build
index de2de42..8440e00 100644
--- a/example/meson.build
+++ b/example/meson.build
@@ -1,13 +1,15 @@
-# Attention, emacs, please use -*- mode: python -*-
-# (even though this isn't actually Python code)
-
examples = [ 'passthrough', 'passthrough_fh',
- 'null', 'hello', 'hello_ll', 'printcap',
- 'ioctl', 'ioctl_client', 'poll_client',
+ 'hello', 'hello_ll', 'printcap',
+ 'ioctl_client', 'poll_client',
'cuse', 'cuse_client' ]
if not platform.endswith('bsd')
- examples += 'passthrough_ll'
+ examples += 'passthrough_ll'
+
+ # Is this really not supported? We should check with
+ # the FreeBSD guys, maybe we're just doing something
+ # wrong.
+ examples += [ 'null', 'ioctl' ]
endif
threaded_examples = [ 'notify_inval_inode',