tests: Add haiku to get define test
This commit is contained in:
parent
fc547ad05e
commit
b56450f9b2
|
@ -16,6 +16,9 @@ foreach lang : ['c', 'cpp']
|
|||
elif host_system == 'cygwin'
|
||||
d = cc.get_define('__CYGWIN__')
|
||||
assert(d == '1', '__CYGWIN__ value is @0@ instead of 1'.format(d))
|
||||
elif host_system == 'haiku'
|
||||
d = cc.get_define('__HAIKU__')
|
||||
assert(d == '1', '__HAIKU__ value is @0@ instead of 1'.format(d))
|
||||
else
|
||||
error('Please report a bug and help us improve support for this platform')
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue