File: meson.build

package info (click to toggle)
libnice 0.1.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,668 kB
  • sloc: ansic: 38,160; xml: 125; sh: 48; python: 28; makefile: 18
file content (17 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
foreach t : ['parse', 'format', 'bind', 'conncheck', 'hmac']
  test_name = 'test-@0@'.format(t)
  exe = executable(test_name, test_name + '.c',
    include_directories: nice_incs,
    dependencies: [syslibs, crypto_dep],
    link_with: libstun)
  test(test_name, exe)
endforeach

# XXX: This test is broken and unused since 2007, ocrete knows about it
# If we enable it, we may want to put it in a separate suite that's only run on
# dist because it takes a long time to run since it tests stun timeouts.
if false and find_program('sh', required : false).found()
  test('test-check-bind', find_program('check-bind.sh'),
    timeout: 600,
    args: [stunbdc_exe, stund_exe])
endif