summaryrefslogtreecommitdiffstats
path: root/tests/meson.build
blob: 0c21cb9c76558aa6a35ad0784fbb9bd615be2921 (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
root_includes = include_directories('../subprojects')

srcs = [
  'tests.c',
]

mocks = [
  '-Wl,--wrap=physunmap',
  '-Wl,--wrap=physmap',
  '-Wl,--gc-sections',
]

flashrom_tests = executable('flashrom_unit_tests',
  srcs,
  include_directories : root_includes,
  c_args : [
    cargs,
    '-ffunction-sections',
    '-fdata-sections',
    #    '-DSTANDALONE',
    '-DCONFIG_DEFAULT_PROGRAMMER=PROGRAMMER_DUMMY',
    '-DCONFIG_DEFAULT_PROGRAMMER_ARGS=""',
  ],
  export_dynamic : true,
  link_args : mocks,
  dependencies : [cmocka_dep, flashrom_test_dep],
)
test('cmocka test flashrom', flashrom_tests)