source: mainline/kernel/test/meson.build@ bc48242

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since bc48242 was 5f176da, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Pull *ARCH from config

  • Property mode set to 100644
File size: 613 bytes
Line 
1## Test sources
2#
3
4test_src = []
5
6if CONFIG_TEST
7 test_src += files(
8 'test.c',
9 'atomic/atomic1.c',
10 'fault/fault1.c',
11 'mm/falloc1.c',
12 'mm/falloc2.c',
13 'mm/mapping1.c',
14 'mm/slab1.c',
15 'mm/slab2.c',
16 'synch/semaphore1.c',
17 'synch/semaphore2.c',
18 'print/print1.c',
19 'print/print2.c',
20 'print/print3.c',
21 'print/print4.c',
22 'print/print5.c',
23 'thread/thread1.c',
24 )
25
26 if KARCH == 'mips32'
27 test_src += files('debug/mips1.c')
28 else
29 test_src += files('debug/mips1_skip.c')
30 endif
31
32 if KARCH == 'ia64'
33 test_src += files('mm/purge1.c')
34 else
35 test_src += files('mm/purge1_skip.c')
36 endif
37endif
Note: See TracBrowser for help on using the repository browser.