Fix fortran tests without test() calls

pull/1779/merge
Bálint Aradi 8 years ago committed by Jussi Pakkanen
parent 05c431c013
commit 1472f419ea
  1. 3
      test cases/fortran/5 static/meson.build
  2. 3
      test cases/fortran/6 dynamic/meson.build

@ -2,4 +2,5 @@ project('try-static-library', 'fortran')
static_hello = static_library('static_hello', 'static_hello.f90')
executable('test_exe', 'main.f90', link_with : static_hello)
exe = executable('test_exe', 'main.f90', link_with : static_hello)
test('static-fortran', exe)

@ -1,4 +1,5 @@
project('dynamic_fortran', 'fortran')
dynamic = shared_library('dynamic', 'dynamic.f90')
executable('test_exe', 'main.f90', link_with : dynamic)
exe = executable('test_exe', 'main.f90', link_with : dynamic)
test('dynamic-fortran', exe)

Loading…
Cancel
Save