summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/18 first_arg/meson.build
blob: 63021f2a36325a63f29339f9ae8a513d2bd00d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
project('fortran_args', 'fortran')

fc = meson.get_compiler('fortran')

if fc.get_id() == 'intel-cl'
  is_arg = '/O2'
  useless = '/DFOO'
else
  is_arg = '-O2'
  useless = '-DFOO'
endif

isnt_arg = '-fiambroken'

assert(fc.has_argument(is_arg), 'Arg that should have worked does not work.')
assert(not fc.has_argument(isnt_arg), 'Arg that should be broken is not.')

assert(fc.get_supported_arguments([is_arg, isnt_arg, useless]) == [is_arg, useless], 'Arg filtering returned different result.')

# Have useless at the end to ensure that the search goes from front to back.
l1 = fc.first_supported_argument([isnt_arg, is_arg, isnt_arg, useless])
l2 = fc.first_supported_argument(isnt_arg, isnt_arg, isnt_arg)

assert(l1.length() == 1, 'First supported returned wrong result.')
assert(l1.get(0) == is_arg, 'First supported returned wrong argument.')
assert(l2.length() == 0, 'First supported did not return empty array.')

# --- test with an actual program, here for implicit none

in0 = fc.first_supported_argument('-fimplicit-none', '-Mdclchk', '/warn:declarations', '-warn').get(0, '')
impnone = {
'intel-cl': '/warn:declarations',
'intel': '-warn',
'gcc': '-fimplicit-none',
'pgi': '-Mdclchk',
}

arg = impnone.get(fc.get_id(), '')
if arg != ''
  assert(in0 == arg, 'implicit none argument ' + arg + ' not matching ' + in0)
endif

in1 = fc.get_supported_arguments('-fimplicit-none', '/warn:declarations', '/warn:errors', '-Mdclchk')
if in1.length() > 0
  assert(not fc.compiles(files('main.f90'), args: in1, name:'will fail implicit none'), 'implicit none should have failed')
endif