Skip to content

Commit ee5b45b

Browse files
committed
meson: remove debug flag, set test log env
1 parent 71cb3ac commit ee5b45b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

meson.build

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ project(
1111
],
1212
)
1313

14-
if get_option('debug')
15-
add_project_arguments('-DDEBUG_BUILD', language: 'c')
16-
endif
17-
1814
cc = meson.get_compiler('c')
1915

2016
cairo = dependency('cairo')

test/meson.build

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,9 @@ test_prog = executable(
4040
test(
4141
'Run tests',
4242
test_prog,
43-
env: environment({'TESTDIR': meson.current_source_dir()}),
43+
args: ['-v'],
44+
env: environment({
45+
'TESTDIR': meson.current_source_dir(),
46+
'DUNST_TEST_LOG': '1',
47+
}),
4448
)

0 commit comments

Comments
 (0)