mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
32 lines
1014 B
Meson
32 lines
1014 B
Meson
project('ish-tests', 'c')
|
|
add_project_arguments(['-m32', '-fno-stack-protector'], language: 'c')
|
|
add_project_link_arguments('-m32', language: 'c')
|
|
|
|
# hello world
|
|
executable('hello', ['hello.c'], link_args: ['-static', '-nostdlib'])
|
|
executable('hello-libc-static', ['hello-clib.c'], link_args: ['-static'])
|
|
executable('hello-libc', ['hello-clib.c'])
|
|
|
|
# simple benchmark
|
|
executable('looper', ['looper.c'])
|
|
executable('fibbonaci', ['fibbonaci.c'])
|
|
|
|
# filesystem
|
|
executable('cat', ['cat.c'])
|
|
executable('stat', ['stat.c'], c_args: ['-D_FILE_OFFSET_BITS=64'])
|
|
executable('getdents', ['getdents.c'])
|
|
|
|
executable('signal', ['signal.c'], link_args: ['-static'])
|
|
executable('forkexec', ['forkexec.c'])
|
|
|
|
executable('thread', ['thread.c'], dependencies: dependency('threads'))
|
|
|
|
# various tests for code that modifies itself
|
|
executable('modify', ['modify.c'], link_args: ['-zexecstack'])
|
|
|
|
# qemu test program
|
|
executable('qemu-test', ['qemu-test.c'], link_args: ['-lm'])
|
|
|
|
run_target('busybox',
|
|
command: ['get-busybox.sh'])
|