Enable running tests that fail at 'meson test'

pull/3578/head
Niklas Claesson 7 years ago committed by Jussi Pakkanen
parent 8d040fad6e
commit ecbeae565b
  1. 2
      run_project_tests.py
  2. 3
      test cases/failing test/1 trivial/main.c
  3. 3
      test cases/failing test/1 trivial/meson.build

@ -505,7 +505,7 @@ def detect_tests_to_run():
('common', 'common', False),
('failing-meson', 'failing', False),
('failing-build', 'failing build', False),
('failing-tests', 'failing tests', False),
('failing-test', 'failing test', False),
('platform-osx', 'osx', not mesonlib.is_osx()),
('platform-windows', 'windows', not mesonlib.is_windows() and not mesonlib.is_cygwin()),

@ -0,0 +1,3 @@
int main(void) {
return 1;
}

@ -0,0 +1,3 @@
project('trivial', 'c')
test('My Test', executable('main', 'main.c'))
Loading…
Cancel
Save