blob: 5dc8d194a7048a6c05b04d5c34a6c588da35d874 [file] [log] [blame]
project('kconfig basic test')
k = import('unstable-kconfig')
conf = k.load('.config')
if not conf.has_key('CONFIG_VAL1')
error('Expected CONFIG_VAL1 to be set, but it wasn\'t')
endif
if conf.has_key('CONFIG_VAL2')
error('Expected CONFIG_VAL2 not be set, but it was')
endif
if conf.get('CONFIG_VAL_VAL').to_int() != 4
error('Expected CONFIG_VAL_VAL to be 4')
endif