mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
run meson formatter
This commit is contained in:
parent
80b8875fea
commit
221d520c37
33 changed files with 661 additions and 315 deletions
|
|
@ -1,4 +1,5 @@
|
|||
test_test_formats = executable('test-formats',
|
||||
test_test_formats = executable(
|
||||
'test-formats',
|
||||
files(
|
||||
'test-formats.c',
|
||||
),
|
||||
|
|
@ -12,8 +13,11 @@ test_test_formats = executable('test-formats',
|
|||
],
|
||||
include_directories : rootinc,
|
||||
implicit_include_directories : false,
|
||||
dependencies : dep
|
||||
dependencies : dep,
|
||||
)
|
||||
test(
|
||||
'test-formats test',
|
||||
test_test_formats,
|
||||
args : [ '--tap' ],
|
||||
protocol : 'tap',
|
||||
)
|
||||
test('test-formats test', test_test_formats,
|
||||
args : ['--tap'],
|
||||
protocol : 'tap')
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
test_test_paste_join_multiline = executable('test-paste-join-multiline',
|
||||
test_test_paste_join_multiline = executable(
|
||||
'test-paste-join-multiline',
|
||||
files(
|
||||
'../../src/fe-text/gui-entry.c',
|
||||
'../../src/fe-text/gui-printtext.c',
|
||||
|
|
@ -25,7 +26,9 @@ test_test_paste_join_multiline = executable('test-paste-join-multiline',
|
|||
implicit_include_directories : false,
|
||||
dependencies : dep + textui_dep,
|
||||
)
|
||||
test('test-paste-join-multiline test', test_test_paste_join_multiline,
|
||||
args : ['--tap'],
|
||||
protocol : 'tap')
|
||||
|
||||
test(
|
||||
'test-paste-join-multiline test',
|
||||
test_test_paste_join_multiline,
|
||||
args : [ '--tap' ],
|
||||
protocol : 'tap',
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
test_test_irc = executable('test-irc',
|
||||
test_test_irc = executable(
|
||||
'test-irc',
|
||||
files(
|
||||
'test-irc.c',
|
||||
),
|
||||
|
|
@ -13,15 +14,19 @@ test_test_irc = executable('test-irc',
|
|||
],
|
||||
include_directories : rootinc,
|
||||
implicit_include_directories : false,
|
||||
dependencies : dep
|
||||
dependencies : dep,
|
||||
)
|
||||
test('test-irc test', test_test_irc,
|
||||
test(
|
||||
'test-irc test',
|
||||
test_test_irc,
|
||||
args : [
|
||||
'--tap',
|
||||
],
|
||||
protocol : 'tap')
|
||||
protocol : 'tap',
|
||||
)
|
||||
|
||||
test_test_channel_events = executable('test-channel-events',
|
||||
test_test_channel_events = executable(
|
||||
'test-channel-events',
|
||||
files(
|
||||
'test-channel-events.c',
|
||||
),
|
||||
|
|
@ -36,10 +41,13 @@ test_test_channel_events = executable('test-channel-events',
|
|||
],
|
||||
include_directories : rootinc,
|
||||
implicit_include_directories : false,
|
||||
dependencies : dep
|
||||
dependencies : dep,
|
||||
)
|
||||
test('test-channel-events test', test_test_channel_events,
|
||||
test(
|
||||
'test-channel-events test',
|
||||
test_test_channel_events,
|
||||
args : [
|
||||
'--tap',
|
||||
],
|
||||
protocol : 'tap')
|
||||
protocol : 'tap',
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
test_test_796 = executable('test-796',
|
||||
test_test_796 = executable(
|
||||
'test-796',
|
||||
files(
|
||||
'test-796.c',
|
||||
),
|
||||
|
|
@ -17,10 +18,13 @@ test_test_796 = executable('test-796',
|
|||
],
|
||||
include_directories : rootinc,
|
||||
implicit_include_directories : false,
|
||||
dependencies : dep
|
||||
dependencies : dep,
|
||||
)
|
||||
test('test-796 test', test_test_796,
|
||||
test(
|
||||
'test-796 test',
|
||||
test_test_796,
|
||||
args : [
|
||||
'--tap',
|
||||
],
|
||||
protocol : 'tap')
|
||||
protocol : 'tap',
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue