summaryrefslogtreecommitdiffstats
path: root/test cases/d/6 unittest/meson.build
blob: 49a07004731f067e24301c18b6550b2c7ea2a9c0 (plain)
1
2
3
4
5
6
7
8
project('D Unittests', 'd')

e = executable('dapp', ['app.d', 'second_unit.d'], install : true)
test('dapp_run', e, should_fail: true)

e_test = executable('dapp_test', ['app.d', 'second_unit.d'],
    d_unittest: true)
test('dapp_test', e_test)