meson.build 267 B

123456789
  1. project('timeout', 'c')
  2. # This creates a test that times out. It is a manual test
  3. # because currently there is no test suite for test that are expected
  4. # to fail during unit test phase.
  5. exe = executable('sleepprog', 'sleepprog.c')
  6. test('timeout', exe, timeout : 1)